1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
"""Exceptions raised by the quicksight service."""
from moto.core.exceptions import JsonRESTError
class ResourceNotFoundException(JsonRESTError):
def __init__(self, msg: str):
super().__init__("ResourceNotFoundException", msg)
class InvalidParameterValueException(JsonRESTError):
def __init__(self, msg: str):
super().__init__("InvalidParameterValueException", msg)
class ValidationException(JsonRESTError):
def __init__(self, msg: str):
super().__init__("ValidationException", msg)
class SchemaException(JsonRESTError):
def __init__(self, msg: str):
super().__init__("SchemaException", msg)
class ParamValidationError(JsonRESTError):
def __init__(self, msg: str):
super().__init__("ParamValidationError", msg)
|