moto/moto/quicksight/exceptions.py
2023-04-09 14:21:53 +00:00

8 lines
241 B
Python

"""Exceptions raised by the quicksight service."""
from moto.core.exceptions import JsonRESTError
class ResourceNotFoundException(JsonRESTError):
def __init__(self, msg: str):
super().__init__("ResourceNotFoundException", msg)