Exception handling using try-catch-finally for normal termination.Try block : It contains the statements which likely to throw an exception.
If an exception raised, the remaining statements in the try block are skipped.Catch Block : Executed only if try block throws an exception.Finally Block : To maintain cleanup code