moto/moto/emrcontainers/exceptions.py
2023-03-05 09:27:17 -01:00

10 lines
270 B
Python

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