I have a workflow where I’ve used a Try block for functionality and a Catch block for relaunching the application. The entire Try Catch structure is within a Retry Scope activity. However, when an exception occurs, the Retry Scope retries the Try block. Instead, I want the Catch block to run every time an exception occurs.
I have attempted using a Do While loop, but it still doesn’t direct to the Catch block if I use the loop.