/ open-webui.git
/ app
/ env
/ lib
/ python3.11
/ site-packages
/ moto
/ sesv2
/ exceptions.py
Run
Starting...
Stop
View File
Save
from moto.core.exceptions import JsonRESTError class NotFoundException(JsonRESTError): code = 404 def __init__(self, message: str): super().__init__("NotFoundException", message)
Memory