dify
This commit is contained in:
17
dify/api/services/errors/file.py
Normal file
17
dify/api/services/errors/file.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from services.errors.base import BaseServiceError
|
||||
|
||||
|
||||
class FileNotExistsError(BaseServiceError):
|
||||
pass
|
||||
|
||||
|
||||
class FileTooLargeError(BaseServiceError):
|
||||
description = "{message}"
|
||||
|
||||
|
||||
class UnsupportedFileTypeError(BaseServiceError):
|
||||
pass
|
||||
|
||||
|
||||
class BlockedFileExtensionError(BaseServiceError):
|
||||
description = "File extension '{extension}' is not allowed for security reasons"
|
||||
Reference in New Issue
Block a user