Java Exception Handling Tutorials

By With No comments:
Exception are used in Java to handle errors or any other exceptional event that occurs in the normal flow of program. There are several way Exception can occur in Java.

  • Data provided is not in expected format(eg. int instead of String).
  • DB can not connected.
  • Network connection Lost.
  • Object is null.
  • …..

Java Exception Hierarchy

Every Exception in Java is sub type of Exception class which in turn is the subclass of Throwable. And as we know everything in Java derived from Object class Throwable also derived from class Object. Exception and Error are two different classes that derived from Throwable. Errors represent situation which doesn’t occur because of Programming error but that might happen at the time of program execution and these are abnormal behavior which java  program can not handle and shouldn’t bother to handle. JVM running out of memory is a type of Error which can occur at runtime.

Checked vs UnChecked Exception

Checked Exception

  1. Checked exceptions are subclass’s of Exception excluding RuntimeException and its subclasses.
  2. Checked Exceptions force programmers to deal with the exception that may be thrown.
  3. When a checked exception occurs in a method, the method must either catch the exception and take the appropriate action,or pass the exception on to its caller.

Example

Arithmetic exception.

Unchecked Exception

  1. Unchecked exceptions are RuntimeException and any of its subclasses.
  2. Compiler doesn’t force the programmers to either catch unchecked exception or declare it in a throws clause.
  3. Programmers may not even know that the exception could be thrown.
  4. Checked exceptions must be caught at compile time.
  5. Runtime exceptions do not need to be.

Example

ArrayIndexOutOfBounds Exception.

Java Exception Handling

Now we know that exception can occur in Java program at any time(or Any Location). So we need to know how to handle these exceptions.  Handling exception is required attribute in developing robust application. Handling Exception means transferring execution of program to appropriate handler when an exception occurs. We can handle exception by using try catch block.
try: try is used to define block of code where exception can occur.
catch: catch is used to match specific type of exception. There could be more than one catch clause for one try block.
finally: finally determine block of code which will always execute after try block. Even in case of Exception.

Read more at http://javabeginnerstutorial.com/core-java-tutorial/java-exceptions/#kV9wcRjfyi4pV32X.99
Read More
Home About us Contact us Privacy Policy
Copyright © 2016 Jobstatus | All Rights Reserved. Design By Jobstatus Tech News