What is an Exception?
An exception is an event triggering a problem during the execution of a program (runtime).Exception Hierarchy:
Throwableis the parent of all exceptons.Error: Serious problems (OutOfMemoryError).Exception: Conditions that can be caught (IOException, SQLException).