abf-console-client-src/abf/api/exceptions.py

28 lines
400 B
Python
Raw Normal View History

2012-10-26 12:14:30 +04:00
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