Try ... Catch
The Try...Catch action is used to execute specific actions in the case of an error or validation failure. A Try...Catch action can capture errors or assertions (validation errors) or both.
When creating a Try...Catch action, two Containers are created: Try and Catch. All actions in the Try Container are executed until an error or assertion occurs (depending on the action configuration). When an error or assertion occurs, the actions in the Catch Container are executed.
Within a Try Container, the User Path will not be halted upon the error or assertion occurrence, even if it is configured so to do, as described in Error handling.
Home