Concept Flow - Multiple catch blocks
Try block starts
Exception occurs?
No→Try block ends normally
Yes
Check first catch block
Matches exception?
No→Check next catch block
Yes
Execute catch block
Continue after try-catch
The program tries code in the try block. If an exception happens, it checks each catch block in order to find a match and runs the matching one.