moto/moto/appsync/exceptions.py
2022-01-14 20:12:26 -01:00

17 lines
375 B
Python

import json
from moto.core.exceptions import JsonRESTError
class AppSyncExceptions(JsonRESTError):
pass
class GraphqlAPINotFound(AppSyncExceptions):
code = 404
def __init__(self, api_id):
super().__init__(
"NotFoundException", f"GraphQL API {api_id} not found.",
)
self.description = json.dumps({"message": self.message})