moto/moto/personalize/exceptions.py
2022-08-23 18:41:10 +00:00

14 lines
354 B
Python

"""Exceptions raised by the personalize service."""
from moto.core.exceptions import JsonRESTError
class PersonalizeException(JsonRESTError):
pass
class ResourceNotFoundException(PersonalizeException):
def __init__(self, arn):
super().__init__(
"ResourceNotFoundException", f"Resource Arn {arn} does not exist."
)