SlideShare a Scribd company logo
1 of 18
Exception Handling
By :-
SURIT DATTA
Contents
 What is an Exception ?
 Error vs. Exception
 Hierarchy of Java Exception classes
 Java Exception Handling Keywords
 Types of Exception in Java
 Internal working of java try-catch block
 Exception Handler
 Java Multi Catch block
 The Throws / Throw Keywords
 The finally block
 Common scenarios where exceptions may occur
 Sequence of Events for throw
 Checked Exceptions
 Un-Checked Exceptions
 User-defined Exceptions:
What is an exception?
 Exception is an abnormal condition.
In java, exception is an event that disrupts the normal flow of the program. It is an
object which is thrown at runtime.
 What is exception handling
Exception Handling is a mechanism to handle runtime errors such as ClassNotFound,
IO, SQL, Remote etc.
 Advantage of Exception Handling
The core advantage of exception handling is to maintain the normal flow of the
application. Exception normally disrupts the normal flow of the application
that is why we use exception handling.
Error vs Exception
 Errors: An error represents a
condition serious enough that
most reasonable applications
should not try to catch.
 Virtual Machine Error
 Out of memory
 Stack overflow
 Thread Death
 Linkage Error
 Exceptions: An error
which reasonable
applications should
catch.
 Array index out of bounds
 Arithmetic errors (divide by
zero
 Null Pointer Exception
 I/O Exceptions
Hierarchy of Java Exception classes
Object
Throwable
Exception Error
IOException
SQLException
Runtime Exception
ArithmeticException
NullPointerException
VirtualMachineError
AssertionError
Java Exception Handling Keywords
 There are 5 keywords used in java exception handling.
 Try : Java try block is used to enclose the code that might throw an exception. It must be used within
the method.
Java try block must be followed by either catch or finally block.
 Catch : Java catch block is used to handle the Exception. It must be used after the try block only.
We can use multiple catch block with a single try.
 Finally : Executes whether or not an exception is thrown in the corresponding try block or any of its
corresponding catch blocks.
Throw : You can throw an exception, either a newly instantiated one or an exception that you just
caught, by using the throw keyword.
Throws : If a method does not handle a checked exception, the method must declare it using
the throws keyword.
Types of Exception in Java
ArithmeticException
ArrayIndexOutOfBoundsException
ClassCastException
IllegalArgumentException
IndexOutOfBoundsException
NegativeArraySizeException
NullPointerException
NumberFormatException
NoSuchMethodException
Internal working of java try-catch block
int data = 10/0; Exception 
object
An object of exception class is thrown
Is  Handled ?
YES
NOJVM
1.Prints out exception 
description
2.Prints the stack trace
3.Terminates the program
Rest of code 
is executed
Exception Handler
Exception
"thrown" here
Exception
handler
Exception
handler
Thrown exception matched against
first set of exception handlers
Thrown exception matched against
first set of exception handlers
If it fails to match, it is matched against
next set of handlers, etc.
If it fails to match, it is matched against
next set of handlers, etc.
If exception matches none of handlers,
program is abandoned
If exception matches none of handlers,
program is abandoned
public class TestMultipleCatchBlock{  
  public static void main(String args[]){  
   try{  
    int a[]=new int[5];  
    a[5]=30/0;  
   }  
   catch(ArithmeticException e){System.out.println("task1 is completed");}  
   catch(ArrayIndexOutOfBoundsException e)
{System.out.println("task 2 completed");}  
   catch(Exception e){System.out.println("common task completed");}  
  
   System.out.println("rest of the code...");  
 }  
}  
At a time only one Exception is occurred and at a time only one catch
block is executed.
All catch blocks must be ordered from most specific to most general i.e.
catch for ArithmeticException must come before catch for Exception .
Java Multi Catch block
The Throws / Throw Keywords
 If a method does not handle a checked exception, the method must
declare it using the throws keyword. The throws keyword appears at
the end of a method's signature.
 You can throw an exception, either a newly instantiated one or an
exception that you just caught, by using the throw keyword.
 ***throws is used to postpone the handling of a checked exception 
and throw is used to invoke an exception explicitly.***
import java.io.*;
public class className
{ public void deposit(double amount) throws RemoteException
{ // Method implementation
throw new RemoteException();
}
//Remainder of class definition
}
The finally block
 The finally block follows a try block or a catch block. A finally block of code
always executes, irrespective of occurrence of an Exception.
 Using a finally block allows you to run any cleanup-type statements that
you want to execute, no matter what happens in the protected code.
 A finally block appears at the end of the catch blocks and has the following
syntax:
try
{ //Protected code
}catch(ExceptionType1 e1)
{ //Catch block }
catch(ExceptionType2 e2)
{ //Catch block }
finally { //The finally block always executes. }
Common scenarios where exceptions may occur
 ArithmeticException occurs
int a=50/0; //ArithmeticException
 NullPointerException occurs
String s=null;
System.out.println(s.length()); //NullPointerException
 NumberFormatException occurs
String s="abc";
int i=Integer.parseInt(s); //NumberFormatException
 ArrayIndexOutOfBoundsException occurs
int a[]=new int[5];
a[10]=50; //ArrayIndexOutOfBoundsException
Sequence of Events for throw
Preceding step
try block
throw
statement
unmatched catch
matching catch
unmatched catch
next step
Checked Exceptions
Inherit from class Exception but not from
RuntimeException
Compiler enforces catch-or-declare requirement
Compiler checks each method call and method
declaration
Checked exceptions are checked at compile-time.
e.g. IOException, SQLException etc.
Unchecked Exceptions
Inherit from class RuntimeException or class Error
Compiler does not check code to see if exception caught
or declared
If an unchecked exception occurs and not caught
- Program terminates or runs with unexpected results
Can typically be prevented by proper coding
User-defined Exceptions:
 We can create your own exceptions in Java. Keep the following
points in mind when writing your own exception classes.
 All exceptions must be a child of Throwable.
 If you want to write a checked exception that is automatically
enforced by the Handle or Declare Rule, you need to extend the
Exception class.
 If you want to write a runtime exception, you need to extend the
RuntimeException class.
 We can define our own Exception class as below:
class MyException extends Exception{ }
Exception Handling in JAVA

More Related Content

What's hot

Java exception handling
Java exception handlingJava exception handling
Java exception handling
BHUVIJAYAVELU
 
Exceptions in Java
Exceptions in JavaExceptions in Java
Exceptions in Java
Vadym Lotar
 
Classes, objects in JAVA
Classes, objects in JAVAClasses, objects in JAVA
Classes, objects in JAVA
Abhilash Nair
 

What's hot (20)

Arrays in Java
Arrays in JavaArrays in Java
Arrays in Java
 
Java exception
Java exception Java exception
Java exception
 
L14 exception handling
L14 exception handlingL14 exception handling
L14 exception handling
 
Java interfaces
Java interfacesJava interfaces
Java interfaces
 
Java exception handling
Java exception handlingJava exception handling
Java exception handling
 
Exception Handling in Java
Exception Handling in JavaException Handling in Java
Exception Handling in Java
 
Exceptions in Java
Exceptions in JavaExceptions in Java
Exceptions in Java
 
Java abstract class & abstract methods
Java abstract class & abstract methodsJava abstract class & abstract methods
Java abstract class & abstract methods
 
Exception handling in java
Exception handling  in javaException handling  in java
Exception handling in java
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
ITFT-Constants, variables and data types in java
ITFT-Constants, variables and data types in javaITFT-Constants, variables and data types in java
ITFT-Constants, variables and data types in java
 
Methods in Java
Methods in JavaMethods in Java
Methods in Java
 
Strings in Java
Strings in JavaStrings in Java
Strings in Java
 
Constructor in java
Constructor in javaConstructor in java
Constructor in java
 
Classes, objects in JAVA
Classes, objects in JAVAClasses, objects in JAVA
Classes, objects in JAVA
 
Exceptionhandling
ExceptionhandlingExceptionhandling
Exceptionhandling
 
Exception Handling In Java
Exception Handling In JavaException Handling In Java
Exception Handling In Java
 
This keyword in java
This keyword in javaThis keyword in java
This keyword in java
 
Arrays in Java
Arrays in JavaArrays in Java
Arrays in Java
 
String, string builder, string buffer
String, string builder, string bufferString, string builder, string buffer
String, string builder, string buffer
 

Viewers also liked (9)

Java exception handling ppt
Java exception handling pptJava exception handling ppt
Java exception handling ppt
 
12 exception handling
12 exception handling12 exception handling
12 exception handling
 
Exception handling
Exception handlingException handling
Exception handling
 
Exception handling in Java
Exception handling in JavaException handling in Java
Exception handling in Java
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
Exception
ExceptionException
Exception
 
Java Pitfalls and Good-to-Knows
Java Pitfalls and Good-to-KnowsJava Pitfalls and Good-to-Knows
Java Pitfalls and Good-to-Knows
 
Exception Handling Java
Exception Handling JavaException Handling Java
Exception Handling Java
 
Java - Exception Handling
Java - Exception HandlingJava - Exception Handling
Java - Exception Handling
 

Similar to Exception Handling in JAVA

Similar to Exception Handling in JAVA (20)

Exception Handling.pptx
Exception Handling.pptxException Handling.pptx
Exception Handling.pptx
 
Exceptionhandling
ExceptionhandlingExceptionhandling
Exceptionhandling
 
UNIT 2.pptx
UNIT 2.pptxUNIT 2.pptx
UNIT 2.pptx
 
Exception handling in java.pptx
Exception handling in java.pptxException handling in java.pptx
Exception handling in java.pptx
 
Exception handling
Exception handlingException handling
Exception handling
 
Interface andexceptions
Interface andexceptionsInterface andexceptions
Interface andexceptions
 
Unit 4 exceptions and threads
Unit 4 exceptions and threadsUnit 4 exceptions and threads
Unit 4 exceptions and threads
 
UNIT-3.pptx Exception Handling and Multithreading
UNIT-3.pptx Exception Handling and MultithreadingUNIT-3.pptx Exception Handling and Multithreading
UNIT-3.pptx Exception Handling and Multithreading
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
JAVA PPT -4 BY ADI.pdf
JAVA PPT -4 BY ADI.pdfJAVA PPT -4 BY ADI.pdf
JAVA PPT -4 BY ADI.pdf
 
8.Exception handling latest(MB).ppt .
8.Exception handling latest(MB).ppt      .8.Exception handling latest(MB).ppt      .
8.Exception handling latest(MB).ppt .
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
Java unit 11
Java unit 11Java unit 11
Java unit 11
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
Exception handling basic
Exception handling basicException handling basic
Exception handling basic
 
Exceptions handling in java
Exceptions handling in javaExceptions handling in java
Exceptions handling in java
 
exception handling
exception handlingexception handling
exception handling
 
Java Exception.ppt
Java Exception.pptJava Exception.ppt
Java Exception.ppt
 
B.Sc. III(VI Sem) Advance Java Unit1: Exception Handling & Multithreading
B.Sc. III(VI Sem) Advance Java Unit1: Exception Handling & MultithreadingB.Sc. III(VI Sem) Advance Java Unit1: Exception Handling & Multithreading
B.Sc. III(VI Sem) Advance Java Unit1: Exception Handling & Multithreading
 

Recently uploaded

+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
Health
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
mphochane1998
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 

Recently uploaded (20)

Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to Computers
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 

Exception Handling in JAVA

  • 2. Contents  What is an Exception ?  Error vs. Exception  Hierarchy of Java Exception classes  Java Exception Handling Keywords  Types of Exception in Java  Internal working of java try-catch block  Exception Handler  Java Multi Catch block  The Throws / Throw Keywords  The finally block  Common scenarios where exceptions may occur  Sequence of Events for throw  Checked Exceptions  Un-Checked Exceptions  User-defined Exceptions:
  • 3. What is an exception?  Exception is an abnormal condition. In java, exception is an event that disrupts the normal flow of the program. It is an object which is thrown at runtime.  What is exception handling Exception Handling is a mechanism to handle runtime errors such as ClassNotFound, IO, SQL, Remote etc.  Advantage of Exception Handling The core advantage of exception handling is to maintain the normal flow of the application. Exception normally disrupts the normal flow of the application that is why we use exception handling.
  • 4. Error vs Exception  Errors: An error represents a condition serious enough that most reasonable applications should not try to catch.  Virtual Machine Error  Out of memory  Stack overflow  Thread Death  Linkage Error  Exceptions: An error which reasonable applications should catch.  Array index out of bounds  Arithmetic errors (divide by zero  Null Pointer Exception  I/O Exceptions
  • 5. Hierarchy of Java Exception classes Object Throwable Exception Error IOException SQLException Runtime Exception ArithmeticException NullPointerException VirtualMachineError AssertionError
  • 6. Java Exception Handling Keywords  There are 5 keywords used in java exception handling.  Try : Java try block is used to enclose the code that might throw an exception. It must be used within the method. Java try block must be followed by either catch or finally block.  Catch : Java catch block is used to handle the Exception. It must be used after the try block only. We can use multiple catch block with a single try.  Finally : Executes whether or not an exception is thrown in the corresponding try block or any of its corresponding catch blocks. Throw : You can throw an exception, either a newly instantiated one or an exception that you just caught, by using the throw keyword. Throws : If a method does not handle a checked exception, the method must declare it using the throws keyword.
  • 7. Types of Exception in Java ArithmeticException ArrayIndexOutOfBoundsException ClassCastException IllegalArgumentException IndexOutOfBoundsException NegativeArraySizeException NullPointerException NumberFormatException NoSuchMethodException
  • 8. Internal working of java try-catch block int data = 10/0; Exception  object An object of exception class is thrown Is  Handled ? YES NOJVM 1.Prints out exception  description 2.Prints the stack trace 3.Terminates the program Rest of code  is executed
  • 9. Exception Handler Exception "thrown" here Exception handler Exception handler Thrown exception matched against first set of exception handlers Thrown exception matched against first set of exception handlers If it fails to match, it is matched against next set of handlers, etc. If it fails to match, it is matched against next set of handlers, etc. If exception matches none of handlers, program is abandoned If exception matches none of handlers, program is abandoned
  • 11. The Throws / Throw Keywords  If a method does not handle a checked exception, the method must declare it using the throws keyword. The throws keyword appears at the end of a method's signature.  You can throw an exception, either a newly instantiated one or an exception that you just caught, by using the throw keyword.  ***throws is used to postpone the handling of a checked exception  and throw is used to invoke an exception explicitly.*** import java.io.*; public class className { public void deposit(double amount) throws RemoteException { // Method implementation throw new RemoteException(); } //Remainder of class definition }
  • 12. The finally block  The finally block follows a try block or a catch block. A finally block of code always executes, irrespective of occurrence of an Exception.  Using a finally block allows you to run any cleanup-type statements that you want to execute, no matter what happens in the protected code.  A finally block appears at the end of the catch blocks and has the following syntax: try { //Protected code }catch(ExceptionType1 e1) { //Catch block } catch(ExceptionType2 e2) { //Catch block } finally { //The finally block always executes. }
  • 13. Common scenarios where exceptions may occur  ArithmeticException occurs int a=50/0; //ArithmeticException  NullPointerException occurs String s=null; System.out.println(s.length()); //NullPointerException  NumberFormatException occurs String s="abc"; int i=Integer.parseInt(s); //NumberFormatException  ArrayIndexOutOfBoundsException occurs int a[]=new int[5]; a[10]=50; //ArrayIndexOutOfBoundsException
  • 14. Sequence of Events for throw Preceding step try block throw statement unmatched catch matching catch unmatched catch next step
  • 15. Checked Exceptions Inherit from class Exception but not from RuntimeException Compiler enforces catch-or-declare requirement Compiler checks each method call and method declaration Checked exceptions are checked at compile-time. e.g. IOException, SQLException etc.
  • 16. Unchecked Exceptions Inherit from class RuntimeException or class Error Compiler does not check code to see if exception caught or declared If an unchecked exception occurs and not caught - Program terminates or runs with unexpected results Can typically be prevented by proper coding
  • 17. User-defined Exceptions:  We can create your own exceptions in Java. Keep the following points in mind when writing your own exception classes.  All exceptions must be a child of Throwable.  If you want to write a checked exception that is automatically enforced by the Handle or Declare Rule, you need to extend the Exception class.  If you want to write a runtime exception, you need to extend the RuntimeException class.  We can define our own Exception class as below: class MyException extends Exception{ }