Hi,
So I want to do error handling for an excel error. I’m using a try-catch activity. Inside the try, I put a parallel with the main excel process, and then in a second branch I put an UI Element exists for the error with 1 minute of time (which is the max time for the main process).
After the Ui Element exists, if it’s true there’s a throw activity with “new Exception(“Error”)”.
Then in the catch there’s sequence to close the error.
The problem that I have is that once the error appears it goes to throw, but it gets stuck there, and it’s not going to catch.
How am I supposed to link the throw with the catch?
Thanks