moto/moto/quicksight/exceptions.py

8 lines
236 B
Python

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