Exception handling in java

Exception handling is a mechanism to handle runtime errors so that the normal flow of the program can be maintained.

 

Exception Hierarchy

Throwable is the superclass. 

 

Advantages/Benefits of Exceptional Handling

  1. Using exceptional handling we can separate the error handling code from normal code.
  2. Using exceptional handling we can differentiate the error types.
  3. The normal flow of the program can be maintained.

 

Types of Exception:

  1. Checked exception.
  2. Unchecked exception.
  3. Error.

 

Checked exceptions

Checked exceptions are those exceptional conditions that are checked by the compiler at the compile time. A checked exception forces you to either use try-catch or throws. All exceptions except Error, RuntimeException, and their subclasses are checked exceptions.

e.g. – IOException, SQLException, etc.

 

Unchecked exceptions

Unchecked exceptions are those exceptional conditions that are not checked by the compiler at the compile time. Unchecked exceptions are checked at runtime. An unchecked exception does not force you to either use try-catch or throws. RuntimeException and their subclasses are unchecked exceptions. This Exception can be avoided by the programmer.

e.g. – NullPointerException, ArithmeticException, etc.

 

Error

Errors are those exceptional conditions that are not checked by the compiler at the compile time. Errors are checked at runtime. An error does not force you to either use try-catch or throws. Error and their subclasses represent errors. Error can’t be avoided by the programmer, it is irrecoverable.

e.g. – OutOfMemoryError etc.

 

How to write an exception handler?

To write a simple exception handler, first enclose the code that might throw an exception within the try block. When an exception occurs in a try block, it will be handled by an appropriate exception handler. Exception handler can associate with try block by using catch block or finally block after it.

Note: catch and finally block both can be attached with a single try block. The hierarchy should be try-catch-finally.

 

To understand more, let us see the keywords used in exception handling.

  1. try
  2. catch
  3. finally
  4. throw
  5. throws

 

Please follow and like us:
Content Protection by DMCA.com