moto/moto/databrew/exceptions.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.4 KiB
Python
Raw Normal View History

from moto.core.exceptions import JsonRESTError
class DataBrewClientError(JsonRESTError):
code = 400
class AlreadyExistsException(DataBrewClientError):
2022-11-25 14:45:39 -01:00
def __init__(self, typ: str):
super().__init__("AlreadyExistsException", f"{typ} already exists.")
class ConflictException(DataBrewClientError):
code = 409
2022-11-25 14:45:39 -01:00
def __init__(self, message: str):
super().__init__("ConflictException", message)
class ValidationException(DataBrewClientError):
2022-11-25 14:45:39 -01:00
def __init__(self, message: str):
super().__init__("ValidationException", message)
class RulesetAlreadyExistsException(AlreadyExistsException):
2022-11-25 14:45:39 -01:00
def __init__(self) -> None:
super().__init__("Ruleset")
class EntityNotFoundException(DataBrewClientError):
2022-11-25 14:45:39 -01:00
def __init__(self, msg: str):
super().__init__("EntityNotFoundException", msg)
class ResourceNotFoundException(DataBrewClientError):
code = 404
2022-11-25 14:45:39 -01:00
def __init__(self, message: str):
super().__init__("ResourceNotFoundException", message)
class RulesetNotFoundException(EntityNotFoundException):
2022-11-25 14:45:39 -01:00
def __init__(self, recipe_name: str):
super().__init__(f"Ruleset {recipe_name} not found.")
2022-05-13 11:48:04 +01:00
class ServiceQuotaExceededException(JsonRESTError):
code = 402
2022-11-25 14:45:39 -01:00
def __init__(self) -> None:
2022-05-13 11:48:04 +01:00
super().__init__(
"ServiceQuotaExceededException", "A service quota is exceeded."
)