17 lines
484 B
Python
17 lines
484 B
Python
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class InvalidRequestException(JsonRESTError):
|
|
def __init__(self, message: str):
|
|
super().__init__("InvalidRequestException", message)
|
|
|
|
|
|
class ValidationException(JsonRESTError):
|
|
def __init__(self, message: str):
|
|
super().__init__("ValidationException", message)
|
|
|
|
|
|
class ResourceNotFoundException(JsonRESTError):
|
|
def __init__(self, message: str):
|
|
super().__init__("ResourceNotFoundException", message)
|