Legacy alias — use APIError for new code.
| 28 | |
| 29 | |
| 30 | class RequestError(APIError): |
| 31 | """Legacy alias — use APIError for new code.""" |
| 32 | |
| 33 | def __init__(self, message: str = '', *args, **kwargs): |
| 34 | # Preserve legacy single-positional-arg constructor signature. |
| 35 | super().__init__(message, **kwargs) |
| 36 | |
| 37 | |
| 38 | class NotLoginException(AuthenticationError): |
no outgoing calls
no test coverage detected
searching dependent graphs…