50 lines
1.2 KiB
Python
50 lines
1.2 KiB
Python
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class NotFoundException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__("NotFoundException", message)
|
|
|
|
|
|
class ValidationException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__("ValidationException", message)
|
|
|
|
|
|
class AlreadyExistsException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__("AlreadyExistsException", message)
|
|
|
|
|
|
class NotAuthorizedException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__("NotAuthorizedException", "")
|
|
|
|
self.description = '{"__type":"NotAuthorizedException"}'
|
|
|
|
|
|
class AccessDeniedException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__("AccessDeniedException", message)
|
|
|
|
self.description = '{"__type":"AccessDeniedException"}'
|
|
|
|
|
|
class InvalidCiphertextException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__("InvalidCiphertextException", "")
|
|
|
|
self.description = '{"__type":"InvalidCiphertextException"}'
|