Try catch

What to use the Try catch step for


The Try catch step executes sub-steps within the 'Try' block. If these steps trigger an error, it is intercepted by the 'Catch' block. This block not only catches the error but also returns it as a token for debugging purposes. Additionally, it can execute a separate set of sub-steps tailored for error handling.

You can use this step to:


  • Debug Axiom runs

How to configure the Try catch step


Try

Add the sub-steps you wish to execute as part of the 'Try' condition.

Catch

Add the sub-steps you wish to execute as part of the 'Catch' condition.

Addional information

You can nest this step in loops or the IF condition step.