moto/moto/lakeformation/exceptions.py
2023-04-04 09:36:48 +00:00

8 lines
244 B
Python

"""Exceptions raised by the lakeformation service."""
from moto.core.exceptions import JsonRESTError
class EntityNotFound(JsonRESTError):
def __init__(self) -> None:
super().__init__("EntityNotFoundException", "Entity not found")