mirror of
https://github.com/langgenius/dify.git
synced 2026-09-06 01:04:49 +08:00
Co-authored-by: zhangx1n <zhangxin@dify.ai> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
35 lines
458 B
Python
35 lines
458 B
Python
class AppNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class EndUserNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidGrantRequestError(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidFileGrantError(Exception):
|
|
pass
|
|
|
|
|
|
class GrantTtlTooLongError(Exception):
|
|
pass
|
|
|
|
|
|
class GrantedFileNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidSubjectError(Exception):
|
|
pass
|
|
|
|
|
|
class RemoteFileUnavailableError(Exception):
|
|
pass
|
|
|
|
|
|
class TooManyFileRefsError(Exception):
|
|
pass
|