Duplicated from MGFeng/Nightglow-AI-03
f961d6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from services.errors.base import BaseServiceError class FileNotExistsError(BaseServiceError): pass class FileTooLargeError(BaseServiceError): description = "{message}" class UnsupportedFileTypeError(BaseServiceError): pass