mirror of
https://github.com/langgenius/dify.git
synced 2026-02-11 19:00:44 -05:00
18 lines
285 B
Python
18 lines
285 B
Python
from .base import BaseServiceError
|
|
|
|
|
|
class AppAssetNodeNotFoundError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AppAssetParentNotFoundError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AppAssetPathConflictError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AppAssetNodeTooLargeError(BaseServiceError):
|
|
pass
|