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 51 52 53 54 55 56 57 58 59 60 61 62 63
|
import json
from moto.core.exceptions import JsonRESTError
class AppSyncExceptions(JsonRESTError):
pass
class AWSValidationException(AppSyncExceptions):
code = 400
def __init__(self, message: str):
super().__init__("ValidationException", message)
self.description = json.dumps({"message": self.message})
class ApiKeyValidityOutOfBoundsException(AppSyncExceptions):
code = 400
def __init__(self, message: str):
super().__init__("ApiKeyValidityOutOfBoundsException", message)
self.description = json.dumps({"message": self.message})
class GraphqlAPINotFound(AppSyncExceptions):
code = 404
def __init__(self, api_id: str):
super().__init__("NotFoundException", f"GraphQL API {api_id} not found.")
self.description = json.dumps({"message": self.message})
class GraphQLSchemaException(AppSyncExceptions):
code = 400
def __init__(self, message: str):
super().__init__("GraphQLSchemaException", message)
self.description = json.dumps({"message": self.message})
class GraphqlAPICacheNotFound(AppSyncExceptions):
code = 404
def __init__(self, op: str):
super().__init__(
"NotFoundException",
f"Unable to {op} the cache as it doesn't exist, please create the cache first.",
)
self.description = json.dumps({"message": self.message})
class EventsAPINotFound(AppSyncExceptions):
code = 404
def __init__(self, api_id: str):
super().__init__("NotFoundException", f"Events API {api_id} not found.")
self.description = json.dumps({"message": self.message})
class BadRequestException(AppSyncExceptions):
def __init__(self, message: str):
super().__init__("BadRequestException", message)
|