mirror of
https://github.com/langgenius/dify.git
synced 2025-07-03 23:28:18 +00:00

Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
14 lines
241 B
Python
14 lines
241 B
Python
from services.errors.base import BaseServiceError
|
|
|
|
|
|
class FileNotExistsError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class FileTooLargeError(BaseServiceError):
|
|
description = "{message}"
|
|
|
|
|
|
class UnsupportedFileTypeError(BaseServiceError):
|
|
pass
|