mirror of
https://github.com/langgenius/dify.git
synced 2026-02-22 14:01:50 -05:00
14 lines
223 B
Python
14 lines
223 B
Python
from .base import BaseServiceError
|
|
|
|
|
|
class AppAssetNodeNotFoundError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AppAssetParentNotFoundError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AppAssetPathConflictError(BaseServiceError):
|
|
pass
|