Global Handler is catching errors that is already within a try-catch block

Hi all,

In my current project, I have a global exception handler as well as another try-catch block around an inner loop. When an exception is thrown within the try block, the process immediately invokes the global handler instead of going to the catch block. Is there a way around this?

Appreciate any help,
Hoang

Has anyone else faced the same issue?