Hi! I’m using the default REFramwork in UiPath. Inside “Process.xaml” I want to use Try-Catch to see if a column exists in an array.
If it catches an exception the workflow will input a default value and continue. So far so good.
But “Process.xaml” is also inside a Try-Catch itself and throws the exception from before, and because of that calls the Transition ‘Error’ instead of ‘Success’.
How can I “reset” the exception from inside Process?
To put it simply, can you have a Try-Catch inside a Try-Catch?