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

27 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