mirror of
https://github.com/langgenius/dify.git
synced 2025-07-23 01:22:45 +00:00
11 lines
244 B
Python
11 lines
244 B
Python
class WorkflowInUseError(ValueError):
|
|
"""Raised when attempting to delete a workflow that's in use by an app"""
|
|
|
|
pass
|
|
|
|
|
|
class DraftWorkflowDeletionError(ValueError):
|
|
"""Raised when attempting to delete a draft workflow"""
|
|
|
|
pass
|