Try Catch step

Introduction

The "Try-Catch" step is used to handle errors and exceptions that might occur during the execution of an automation. This step allows you to define actions to attempt ("Try") and specify alternative actions ("Catch") if an error occurs.

Subpaths

  • Try: This subpath contains the actions that you want to attempt. If these actions execute successfully, the automation proceeds without entering the "Catch" subpath.

  • Catch: This subpath contains the actions to be executed if an error or exception occurs during the "Try" subpath.

    • Exception: An object variable within the "Catch" subpath that provides details about the error. It includes:

      • Message: The error message, which may be null if not available.

This step allows you to manage errors gracefully, ensuring that your automation can continue or handle failures as needed.

Last updated