Try/Catch
Use this Node to group Workflow Steps into normal processing, error handling, and cleanup branches.
It is useful when you want to separate the Steps that should run normally from the Steps that should handle errors, with an optional branch for follow-up logic.
This Node is best used when a Workflow should continue with controlled handling after a known failure path.
Revision History
0.0.0.8 - Current release.
Setup Notes
You can add this Node to a Workflow without authentication or external setup.
Methods
The Try/Catch Node exposes one method.
Try/Catch
Wraps a block of Steps with Try, Catch, and Finally branches.
When this Node is placed on a Workflow, a section for each branch is visualised, allowing you to place your specific processes within each branch as desired.
In this way, this method does not input any Parameters or Return any values.
Usage Notes
- Put the Steps you want to run normally in the
Trybranch. - Put your error-handling Steps in the
Catchbranch. - Use the
Finallybranch for follow-up logic that belongs after the main processing and error-handling structure.