mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 19:36:53 +08:00
12 lines
277 B
Python
12 lines
277 B
Python
from werkzeug.exceptions import HTTPException
|
|
|
|
|
|
class FilenameNotExistsError(HTTPException):
|
|
code = 400
|
|
description = "The specified filename does not exist."
|
|
|
|
|
|
class RemoteFileUploadError(HTTPException):
|
|
code = 400
|
|
description = "Error uploading remote file."
|