mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 21:59:55 +08: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
|