I use InvokeWorkflowFile Contained inside is Sequence Lv1 > Lv2 > Lv3
At lv3, an error occurred , I want to catch the error at lv3 and stop the program at the error location, without reproducing the error at lv2 and lv1
how do i fix it?
Remove the Rethrow Activity from the Catch Section.
The Rethrow is Throwing the Exception back to LV2.
Further More - If you do not want any more Execution of the Process - Use Terminate Workflow activity. Below is a Sample on how to use a Terminate Activity.
if an error occurred at Lv3 then catch that error in catch block by selecting system error exception and followed by kill browser activity in final block to stop the bot execution.