moto/moto/opsworks/exceptions.py
2023-04-05 12:04:58 +00:00

12 lines
381 B
Python

from moto.core.exceptions import JsonRESTError
class ResourceNotFoundException(JsonRESTError):
def __init__(self, message: str):
super().__init__(error_type="ResourceNotFoundException", message=message)
class ValidationException(JsonRESTError):
def __init__(self, message: str):
super().__init__(error_type="ResourceNotFoundException", message=message)