moto/moto/ivs/exceptions.py
2023-10-10 07:39:55 +00:00

10 lines
258 B
Python

"""Exceptions raised by the ivs service."""
from moto.core.exceptions import JsonRESTError
class ResourceNotFoundException(JsonRESTError):
code = 404
def __init__(self, message: str):
super().__init__("ResourceNotFoundException", message)