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"}' class InvalidKeyUsageException(JsonRESTError): code = 400 def __init__(self) -> None: super().__init__("InvalidKeyUsageException", "") self.description = '{"__type":"InvalidKeyUsageException"}' class KMSInvalidMacException(JsonRESTError): code = 400 def __init__(self) -> None: super().__init__("KMSInvalidMacException", "") self.description = '{"__type":"KMSInvalidMacException"}'
Memory