mirror of
https://abf.rosa.ru/djam/abf-console-client-src.git
synced 2025-02-25 02:42:51 +00:00
28 lines
396 B
Python
28 lines
396 B
Python
![]() |
|
||
|
|
||
|
class AbfApiException(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class PageNotFoundError(AbfApiException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class AuthError(AbfApiException):
|
||
|
pass
|
||
|
|
||
|
class ForbiddenError(AbfApiException):
|
||
|
pass
|
||
|
|
||
|
class RateLimitError(AbfApiException):
|
||
|
pass
|
||
|
|
||
|
class InternalServerError(AbfApiException):
|
||
|
pass
|
||
|
|
||
|
class ServerWorksError(AbfApiException):
|
||
|
pass
|
||
|
|
||
|
class BadRequestError(AbfApiException):
|
||
|
pass
|