mirror of https://github.com/langgenius/dify.git
25 lines
393 B
Python
25 lines
393 B
Python
class MoreLikeThisDisabledError(Exception):
|
|
pass
|
|
|
|
|
|
class WorkflowHashNotEqualError(Exception):
|
|
pass
|
|
|
|
|
|
class IsDraftWorkflowError(Exception):
|
|
pass
|
|
|
|
|
|
class WorkflowNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class WorkflowIdFormatError(Exception):
|
|
pass
|
|
|
|
|
|
class InvokeDailyRateLimitError(Exception):
|
|
"""Raised when daily rate limit is exceeded for workflow invocations."""
|
|
|
|
pass
|