Hi All.
I have created a GlobalHandler workflow in Re Framework.
I am expecting it to trigger when the exception is not handled.
But it’s getting triggered even I have handled the Exception(UiPath.UIAutomationNext.Exceptions.NodeNotFoundException)
The behaviour of geh in UiPath is like it get triggered whenever there is an error even if there is a try catch or no it first goes to geh hand then goes to next action
Only exception for it is if an activity is surrounder by try catch and there is no sequence or any other activity in same try block then it wont go to geh
Its poorly named as it functions as a first chance exception handler, firing if the exception is handled or not.
It also fires on every container on its way up the stack until it reaches an exception handler.
Its only really useful in logging or very basic scenarios. I’d suggest avoiding it.