Default Exception Handling
When JVM detects exception-causing code, it constructs a new exception-handling object by including the
the following information.
Name of Exception
Description of the Exception
Location of Exception.
After the creation of an object by JVM, it checks whether there is an exception handling code or not. If there is
an exception handling code then the exception handles and continues the program. If there is no exception
handling code JVM gives the responsibility of exception handling to the default handler and terminates
abruptly.