MCPcopy
hub / github.com/sartography/SpiffWorkflow / WorkflowDataException

Class WorkflowDataException

SpiffWorkflow/bpmn/exceptions.py:102–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100
101
102class WorkflowDataException(WorkflowTaskException):
103
104 def __init__(self, message, task, data_input=None, data_output=None):
105 """
106 :param task: the task that generated the error
107 :param data_input: the spec of the input variable (if a data input)
108 :param data_output: the spec of the output variable (if a data output)
109 """
110 super().__init__(message, task)
111 self.data_input = data_input
112 self.data_output = data_output

Callers 8

_update_hookMethod · 0.90
_on_complete_hookMethod · 0.90
getMethod · 0.90
setMethod · 0.90
copy_dataMethod · 0.90
update_dataMethod · 0.90
create_childMethod · 0.90
raise_data_exceptionMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected