Manually creating an REFramework-style exception recovery

Hi, anyone have a template for REFramework-style exception recovery? Basically I can’t use the REFramework as it is because the workflow isn’t based on transaction items one by one… Just need a container to enclose the entire workflow and continue if there is application or business exception.

Also, does exception recovery include recovery if the Robot or Studio itself crashes?

Thanks

Hi @DEATHFISH

As per my thoughts…
You can use a flowchart activity as the main workflow, add all your workflows init in the order they should run, have flow decision activities where required to handle business exceptions. You can even use tese activities to loop set of activities using decision activities just like the reframework does…

Additionally, you can enclose the main flowchart in a try catch as well. In case you want to retry an activity that fails for few more times, you can use global handler to handle global exceptions. You can even retry executing affected activities too…

I guss this is what you are looking for?