18 lines
590 B
Python
18 lines
590 B
Python
class BadRequestError(Exception):
|
|
def __init__(self, message=None, *args, **kwargs):
|
|
super(BadRequestError, self).__init__(message)
|
|
|
|
|
|
class GatewayError(Exception):
|
|
def __init__(self, message=None, *args, **kwargs):
|
|
super(GatewayError, self).__init__(message)
|
|
|
|
|
|
class ServerError(Exception):
|
|
def __init__(self, message=None, *args, **kwargs):
|
|
super(ServerError, self).__init__(message)
|
|
|
|
|
|
class SignatureVerificationError(Exception):
|
|
def __init__(self, message=None, *args, **kwargs):
|
|
super(SignatureVerificationError, self).__init__(message)
|