Inside Activate
Development
Job Completion Statuses when Catch is used in Workflow
2 min
a catch can be used in a workflow to handle exceptions/errors that may be thrown at different steps of a workflow the catch then allows you to set up additional actions that are run in the event of an error, for example, an email that is sent to the administrator advising that the task has failed when setting up the catch you will need to decide how you want the job status to be displayed in the event of an error error or complete error if you require the job to end with an error status, you will need to add an end as the last step within the catch this will result in the job ending with an error status if an exception is caught complete if you want the job to end with a complete status, then when setting up the catch in the workflow you don't need to include the end step within it this will result in the job ending with a complete status if an exception is caught