exceptions
JobExecutionError
¶
Bases: RuntimeError
JobExecutionError
| ATTRIBUTE | DESCRIPTION |
|---|---|
info |
A free field for additional information
TYPE:
|
Source code in fractal_server/runner/exceptions.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | |
TaskExecutionError
¶
Bases: RuntimeError
Forwards errors occurred during the execution of a task
This error wraps and forwards errors occurred during the execution of tasks, when the exit code is larger than 0 (i.e. the error took place within the task). This error also adds information that is useful to track down and debug the failing task within a workflow.
| ATTRIBUTE | DESCRIPTION |
|---|---|
workflow_task_id |
ID of the workflow task that failed.
TYPE:
|
workflow_task_order |
Order of the task within the workflow.
TYPE:
|
task_name |
Human readable name of the failing task.
TYPE:
|
Source code in fractal_server/runner/exceptions.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |