mirror of
https://github.com/langgenius/dify.git
synced 2026-02-23 03:17:57 +08:00
* main: (141 commits) fix(workflow/hooks/use-shortcuts): resolve issue of copy shortcut not working in workflow debug and preview panel (#8249) chore: cleanup pycodestyle E rules (#8269) let claude models in bedrock support the response_format parameter (#8220) enhance: improve empty data display for detail panel (#8266) chore: remove useless code (#8198) chore: apply pep8-naming rules for naming convention (#8261) fix:ollama text embedding 500 error (#8252) Update Gitlab query field, add query by path (#8244) editor can also create api key (#8214) fix: upload img icon mis-align in the chat input area (#8263) fix: truthy value (#8208) fix(workflow): IF-ELSE nodes connected to the same subsequent node cause execution to stop (#8247) fix: workflow parallel limit in ifelse node (#8242) fix: CHECK_UPDATE_URL comment (#8235) fix:error when adding the ollama embedding model (#8236) fix: improving the regionalization of translation (#8231) feat: add from_variable_selector for stream chunk / message event (#8228) fix(workflow): answers are output simultaneously across different braches in the question classifier node. (#8225) fix(workflow): in multi-parallel execution with multiple conditional branches (#8221) fix(docker/docker-compose.yaml): Set default value for `REDIS_SENTINEL_SOCKET_TIMEOUT` and `CELERY_SENTINEL_SOCKET_TIMEOUT` (#8218) ...
62 lines
932 B
Python
62 lines
932 B
Python
from services.errors.base import BaseServiceError
|
|
|
|
|
|
class AccountNotFoundError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AccountRegisterError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AccountLoginError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AccountPasswordError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AccountNotLinkTenantError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class CurrentPasswordIncorrectError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class LinkAccountIntegrateError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class TenantNotFoundError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class AccountAlreadyInTenantError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class InvalidActionError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class CannotOperateSelfError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class NoPermissionError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class MemberNotInTenantError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class RoleAlreadyAssignedError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class RateLimitExceededError(BaseServiceError):
|
|
pass
|