what is a limitation of rethrow activity if we have use nested try catch for i.e 4 try catch in the last one i got error can it possible to rethrow ?
Hi @Aleem_Khan
Throw activity is used when you want to throw error before the execution of the step
The “ Rethrow ” activity is useful if you want to occur before the Exception is thrown, so in the Catch you would put that activity and it will throw the Exception that occurred originally that put you into the Catch and end the process.
Regards
Gokul
Hi thanks for instant revert I know about how to use rethrow I always use in catch section but my question is something different here as I said I have nested trycatch like 10 trycatch and exception occurred in 8 or last one try catch can 9 catch section i can use rethrow for bubbling ?