moto/moto/appsync/exceptions.py
2022-03-10 13:39:59 -01:00

15 lines
352 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})