abf-console-client-src/abf/api/exceptions.py
Anton Kirilenko 0f7786cb39 Unification
2012-10-26 13:21:25 +04:00

28 lines
No EOL
400 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