(self, msg, *, detail=None, hint=None)
| 242 | """A warning caused by an improper use of asyncpg API.""" |
| 243 | |
| 244 | def __init__(self, msg, *, detail=None, hint=None): |
| 245 | InterfaceMessage.__init__(self, detail=detail, hint=hint) |
| 246 | UserWarning.__init__(self, msg) |
| 247 | |
| 248 | |
| 249 | class InternalClientError(Exception): |