10 lines
270 B
Python
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)
|