mirror of
https://github.com/langgenius/dify.git
synced 2026-02-12 04:01:29 -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
|