| 100 | |
| 101 | |
| 102 | class 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 |
no outgoing calls
no test coverage detected