mirror of
https://github.com/langgenius/dify.git
synced 2026-03-06 06:35:24 -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
|