A developer is using a Global Exception Handler as an error handling mechanism for a project. By default, how many times does a Global Exception Handler retry an activity that continually throws an error?
The Global Exception Handler is an error handling mechanism for a project. By default, it retries an activity that continually throws an error 3 times. The Global Exception Handler is a workflow that is executed when an exception occurs in the project. It allows the developer to define custom actions for handling different types of exceptions, such as logging, retrying, aborting, or continuing the execution1. When the Global Exception Handler encounters an exception, it logs the name of the activity which faulted and starts retrying the activity three times. If it encounters the same exception each time and the number of retries reaches 3, the execution is aborted at the level of the activity which threw the exception2. The number of retries can be modified by changing the value of the RetryCount variable in the Global Exception Handler workflow3. References: Global Exception Handler and Global Handler for Exceptions from UiPath documentation and Marketplace.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit