8 lines
241 B
Python
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)
|