Appearance
Flow Try / Catch
Executes nodes in a Try block, catches errors in a Catch block, then optionally continues.
Inputs: 1 · Outputs: Try, Catch, Then
Settings
| Setting | Type | Required | Default | Description |
|---|---|---|---|---|
| Continue to Then After Catch | Boolean | No | true | If enabled, runs the Then output after the Catch block handles an error. If disabled, flow stops after Catch. |
| Log Errors to Console | Boolean | No | true | Output caught errors to the server console for debugging. |
How It Works
- Try — Nodes connected here execute first.
- Catch — If any node in the Try block fails, execution jumps here.
- Then — Runs after Try completes successfully, or after Catch (if "Continue to Then After Catch" is enabled).
Example
Safely run a risky command:
- Try → Run Command (might fail)
- Catch → Log to Console ("Command failed")
- Then → Send Message ("Done!")
