Legacy alias — use AuthenticationError for new code.
| 36 | |
| 37 | |
| 38 | class NotLoginException(AuthenticationError): |
| 39 | """Legacy alias — use AuthenticationError for new code.""" |
| 40 | |
| 41 | def __init__(self, message: str = '', *args, **kwargs): |
| 42 | super().__init__(message, **kwargs) |
| 43 | |
| 44 | |
| 45 | class FileDownloadError(NetworkError): |