moto/moto/timestreamwrite/exceptions.py
2023-04-29 22:21:00 +00:00

10 lines
318 B
Python

"""Exceptions raised by the timestreamwrite service."""
from moto.core.exceptions import JsonRESTError
class ResourceNotFound(JsonRESTError):
error_type = "com.amazonaws.timestream.v20181101#ResourceNotFoundException"
def __init__(self, msg: str):
super().__init__(ResourceNotFound.error_type, msg)