Exception Handling in Java
 
    Exception Handling in Java :     The  Exception Handling in Java  is one of the powerful  mechanism to handle the runtime errors  so that normal flow of the application can be maintained.   In this page, we will learn about Java exceptions, its type and the difference between checked and unchecked exceptions.   What is Exception in Java   Dictionary Meaning:  Exception is an abnormal condition.     What is Exception Handling   Exception Handling is a mechanism to handle runtime errors such as ClassNotFoundException, IOException, SQLException, RemoteException, etc.     Hierarchy of Java Exception classes           Types of Java Exceptions    There are mainly two types of exceptions: checked and unchecked. Here, an error is considered as the unchecked exception. According to Oracle, there are three types of exceptions:   Checked Exception  Unchecked Exception  Error     Difference between Checked and Unchecked Exceptions   1) Checked Exception    The clas...