Not Executing Catch Block

Hi Team,

As soon as I get my error in Try block, my flow go to Global handler and attempt 3 tries. my flow is not going to Catch activity at all. It keeps rotating between Try → Global Handler ( 3 attempt) and Try block again.Please Guide me

Hi! @Yogeshwar_Singh ,

When We Use The Global Exception Handler will handle the exceptions globally… That means the catch block won’t execute… whenever the exception occurs in try block… The global exception handler will catch the exception not the catch part in the try-catch…

If you wants to execute the catch block you can disable the global exception handle then only the catch block will executes…

I hope i answered your questions… Hope this will helps you to understand the purpose of global exception handler

Reference:

Regards,
NaNi

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.