Concept Flow - Generic exception handling
Start
Try block runs
Exception occurs?
No→Try block ends normally
Yes
Catch with except Exception
Handle exception
Continue after except
The program tries to run code in the try block. If any error happens, it jumps to the except block to handle it, then continues.