Try Catch
This node allows you to safeguard potentially faulty execution paths in your workflow and implement custom logic in case of errors.
Flow
Parameter set
|
Parameter |
Description |
|---|---|
|
Try |
The program is executed; if an exception occurs, execution jumps to the catch block. |
|
Catch |
Executed after an exception occurs during the try operation. |
|
Then |
Executed after the try or catch block. |