moto/moto/mediaconnect/exceptions.py
2023-04-03 22:50:19 +00:00

9 lines
198 B
Python

from moto.core.exceptions import JsonRESTError
class NotFoundException(JsonRESTError):
code = 400
def __init__(self, message: str):
super().__init__("NotFoundException", message)