moto/moto/mediaconnect/exceptions.py
2022-01-14 18:51:49 -01:00

9 lines
193 B
Python

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