mirror of
https://github.com/langgenius/dify.git
synced 2026-02-25 04:06:30 +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
|