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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
"""Exceptions raised by the clouddirectory service."""
import json
from moto.core.exceptions import JsonRESTError
class ValidationError(JsonRESTError):
def __init__(self, message: str):
super().__init__("ValidationException", message)
class InvalidArnException(JsonRESTError):
def __init__(self, resource_id: str):
super().__init__("InvalidArnException", "Invalid Arn")
body = {
"ResourceId": resource_id,
"Message": "Invalid Arn",
}
self.description = json.dumps(body)
class ResourceNotFoundException(JsonRESTError):
def __init__(self, resource_id: str):
super().__init__("ResourceNotFoundException", "Resource not found")
body = {
"ResourceId": resource_id,
"Message": "Resource not found",
}
self.description = json.dumps(body)
class SchemaAlreadyPublishedException(JsonRESTError):
def __init__(self, schema_arn: str):
super().__init__("SchemaAlreadyPublishedException", "Schema already published")
body = {
"SchemaArn": schema_arn,
"Message": "Schema already published",
}
self.description = json.dumps(body)
class SchemaAlreadyExistsException(JsonRESTError):
def __init__(self, schema_arn: str):
super().__init__("SchemaAlreadyExistsException", "Schema already exists")
body = {
"SchemaArn": schema_arn,
"Message": "Schema already exists",
}
self.description = json.dumps(body)
|