Exceptions in automation process workflows?

What are the activities available to handle Exceptions in automation process workflows?

Hi @mrunalini

To handle exceptions in your process workflow, there’s a Try Catch Activity
It behaves similarly like Try Catch and Finally Block in development codes.

Try Catch activity also has Try, Catch and Finally Block. With this, you can ensure that the process gets executed smoothly.

You can log also these exceptions further in the Automation Studio log files.

You can refer to the knowledge base links below to understand more about Try Catch activity and Logging activities.

https://www.edgeverve.com/assistedge/knowledge-base/RPA19.1/Automation_Studio/Configuring-Automation-Processes/Exception_Handling/Try_Catch/Try_Catch.htm

https://www.edgeverve.com/assistedge/knowledge-base/RPA19.1/Automation_Studio/Configuring-Automation-Processes/Assign_and_Writeline/Write_to_Log_files.htm

https://www.edgeverve.com/assistedge/knowledge-base/RPA19.1/Automation_Studio/Configuring-Automation-Processes/Assign_and_Writeline/Add_Log_Fields.htm

1 Like

This is helpful, Thanks!