19-11-22 02:20 PM
21-11-22 08:39 PM
23-11-22 11:11 AM
24-11-22 11:56 AM
30-11-22 02:26 PM
Hey Sahil,
Typically Blue Prism follows two types of exception handling best practices. Frist, sub pages will have retry loops, These typically will limit to three retries.
Then on the main page, you don't want to do a retry loop again, since that could multiply the exceptions that bubble up. Instead, you have what you could call a "Master Recover" stage that will record the exception, check to make sure it's not a duplicate, and then move on to the next item of work:
Hopefully this is what you are referring to and helps!