You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflow_service.py 244B

12345678910
  1. class WorkflowInUseError(ValueError):
  2. """Raised when attempting to delete a workflow that's in use by an app"""
  3. pass
  4. class DraftWorkflowDeletionError(ValueError):
  5. """Raised when attempting to delete a draft workflow"""
  6. pass