9 lines
198 B
Python
9 lines
198 B
Python
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class NotFoundException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__("NotFoundException", message)
|