10 lines
258 B
Python
10 lines
258 B
Python
"""Exceptions raised by the ivs service."""
|
|
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class ResourceNotFoundException(JsonRESTError):
|
|
code = 404
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__("ResourceNotFoundException", message)
|