Skip to content

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

SettingTypeRequiredDefaultDescription
Continue to Then After CatchBooleanNotrueIf enabled, runs the Then output after the Catch block handles an error. If disabled, flow stops after Catch.
Log Errors to ConsoleBooleanNotrueOutput caught errors to the server console for debugging.

How It Works

  1. Try — Nodes connected here execute first.
  2. Catch — If any node in the Try block fails, execution jumps here.
  3. Then — Runs after Try completes successfully, or after Catch (if "Continue to Then After Catch" is enabled).

Example

Safely run a risky command:

  1. Try → Run Command (might fail)
  2. Catch → Log to Console ("Command failed")
  3. Then → Send Message ("Done!")

Oasis Admin Editor Documentation