mirror of
https://github.com/langgenius/dify.git
synced 2026-02-24 11:51:21 +08:00
10 lines
171 B
Python
10 lines
171 B
Python
from services.errors.base import BaseServiceError
|
|
|
|
|
|
class WorkSpaceNotAllowedCreateError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class WorkSpaceNotFound(BaseServiceError):
|
|
pass
|