SlideShare a Scribd company logo
2
Most read
7
Most read
9
Most read
Exception Handling
in JAVA
By – Kunal Singh
Jaskaran Singh
CLASS PRESENTATION
What is Exception?
• An exception is a problem that arises during the
execution of a program. When an Exception occurs the
normal flow of the program is disrupted and the
program terminates abnormally
• Exception Handling is a mechanism to handle runtime
errors.
Situations in which exception
can occur :-
• User entering invalid data.
• Opening a non-existing file.
• Network connections problem.
• Number format exception.
Types of Exception
• Checked exceptions − A checked exception is an
exception that occurs at the compile time, these are also
called as Compile time exceptions.
• Unchecked exceptions − An unchecked exception is an
exception that occurs at the time of execution. These are
also called as Runtime Exceptions.
• Errors − These are not exceptions at all, but problems
that arise beyond the control of the user or the
programmer. e.g. OutOfMemoryError,
VirtualMachineError.
Exception Hierarchy
Try-Catch Block
• Try block- It is used to enclose
the code that might throw an
exception. It must be used within
the method.
• Catch block- It is used to handle
the Exception. It must be used
after the try block only. It involves
declaring the type of exception
you are trying to catch.
Syntax:-
try
{
// Protected code
}
catch(ExceptionName e)
{
// Catch block
}
Example (without exception handling)
public class Testtrycatch1{
public static void main(String args[]){
int data=50/0;
System.out.print("rest ");
System.out.print(“of");
System.out.print(“the");
System.out.print(“code");
}
}
Output- Exception in thread main
java.lang.ArithmeticException:/ by zero
Example (with exception handling)
public class Testtrycatch2{
public static void main(String args[]){
try{
int data=50/0;
}
catch(ArithmeticException e)
{ System.out.println(e);
}
System.out.println("rest of the code...");
} }
Output- Exception in thread main
java.lang.ArithmeticException:/ by zero
rest of the code...
Multiple Catch Block
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(“e");}
catch(ArrayIndexOutOfBoundsException e){System.out.println(“e");}
System.out.println("rest of the code..."); }
}
Output- Exception in thread main
java.lang.ArithmeticException:/ by zero
rest of the code...
Some common Sub-Classes of exception
are:-
• ArithmeticException - If we divide any number by
zero, there occurs an ArithmeticException
int a=50/0;
• NullPointerException - If we have null value in any
variable, performing any operation by the variable
occurs an NullPointerException.
String s=null;
System.out.println(s.length());
• ArrayIndexOutOfBoundsException - If we are
inserting any value in the wrong index, it would
result ArrayIndexOutOfBoundsException.
int a[]=new int[5];
a[10]=50;
• NumberFormatException- The wrong formatting
of any value, may occur NumberFormatException.
String s="abc";
int i=Integer.parseInt(s);
Finally block
• Finally block is a block
that is used to execute
important code.
• It is always executed
whether exception is
handled or not.
• The finally block follows
a try block or a catch
block.
try {
// Protected code
}
catch (ExceptionType1 e1)
{ // Catch block
}
catch (ExceptionType2 e2)
{ // Catch block
}
catch (ExceptionType3 e3)
{ // Catch block
}
finally
{
// The finally block always
executes.
}
Example
public class TestFinallyBlock2{
public static void main(String args[]){
try{
int data=25/0;
System.out.println(data); }
catch(ArithmeticException e){
System.out.println(e);}
finally{
System.out.println("finally block will execute");}
} }
Output:Exception in thread main
java.lang.ArithmeticException:/ by zero
finally block will execute
User defined exception
• If you are creating your own Exception that is
known as custom exception or user-defined
exception.
• All exceptions must be a child of Throwable.
Throw keyword
• Java throw keyword is used to explicitly throw
an exception.
• We can throw either checked or uncheked
exception in java by throw keyword.
• The throw keyword is mainly used to throw user
defined exception.
Syntax:- throw exception;
Throws Keyword
• The throws keyword is used to declare an exception.
• It gives an information to the programmer that there
may occur an exception so it is better for the
programmer to provide the exception handling code so
that normal flow can be maintained.
• Syntax:-
return_type method_name() throws exception_class_name{
//method code }
Difference between throw and
throws in Java
Exception handling in JAVA

More Related Content

PPSX
Exception Handling
PPTX
Exception Handling in Java
PPT
Exception Handling in JAVA
PPT
Abstract class in java
PDF
Java exception handling ppt
PPTX
Java exception handling
ODP
Multithreading In Java
PDF
Java - Exception Handling Concepts
Exception Handling
Exception Handling in Java
Exception Handling in JAVA
Abstract class in java
Java exception handling ppt
Java exception handling
Multithreading In Java
Java - Exception Handling Concepts

What's hot (20)

PPTX
Exception handling in java
PPTX
Exception handling
PPS
Java Exception handling
PPT
Exception handling
PPTX
Java exception handling
PPTX
Access specifiers(modifiers) in java
PPTX
Exceptionhandling
PDF
Java Serialization
PPTX
Exception handling in Java
PPT
C# Exceptions Handling
PDF
Exception handling
PDF
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
PPTX
Exception handling in java
PPTX
Exception handling in java
PPTX
Interfaces in java
PDF
Java variable types
PDF
Arrays in Java
PPTX
Abstract class and Interface
PPTX
Classes objects in java
Exception handling in java
Exception handling
Java Exception handling
Exception handling
Java exception handling
Access specifiers(modifiers) in java
Exceptionhandling
Java Serialization
Exception handling in Java
C# Exceptions Handling
Exception handling
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Exception handling in java
Exception handling in java
Interfaces in java
Java variable types
Arrays in Java
Abstract class and Interface
Classes objects in java
Ad

Similar to Exception handling in JAVA (20)

PPT
A36519192_21789_4_2018_Exception Handling.ppt
PPTX
Java-Unit 3- Chap2 exception handling
PPTX
Chap2 exception handling
PPT
Exception Handling Exception Handling Exception Handling
PDF
Ch-1_5.pdf this is java tutorials for all
PPTX
L14 exception handling
PDF
Chapter 5 Exception Handling (1).pdf
PPT
exceptionvdffhhhccvvvv-handling-in-java.ppt
PPTX
UNIT III 2021R.pptx
PPTX
UNIT III 2021R.pptx
PPTX
Java chapter 6
PPTX
Exception Handling.pptx
PPTX
Java Exceptions and Exception Handling
PPT
exception-handling-in-java.ppt unit 2
PPT
Exception
PPTX
UNIT-3.pptx Exception Handling and Multithreading
PPTX
Exception Handling In Java Presentation. 2024
PPTX
Java-Exception Handling Presentation. 2024
PPTX
Exception handling in java
PPTX
OBJECT ORIENTED PROGRAMMING_Unit3_NOTES first half.pptx
A36519192_21789_4_2018_Exception Handling.ppt
Java-Unit 3- Chap2 exception handling
Chap2 exception handling
Exception Handling Exception Handling Exception Handling
Ch-1_5.pdf this is java tutorials for all
L14 exception handling
Chapter 5 Exception Handling (1).pdf
exceptionvdffhhhccvvvv-handling-in-java.ppt
UNIT III 2021R.pptx
UNIT III 2021R.pptx
Java chapter 6
Exception Handling.pptx
Java Exceptions and Exception Handling
exception-handling-in-java.ppt unit 2
Exception
UNIT-3.pptx Exception Handling and Multithreading
Exception Handling In Java Presentation. 2024
Java-Exception Handling Presentation. 2024
Exception handling in java
OBJECT ORIENTED PROGRAMMING_Unit3_NOTES first half.pptx
Ad

Recently uploaded (20)

PDF
Basic Mud Logging Guide for educational purpose
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
Pre independence Education in Inndia.pdf
PDF
RMMM.pdf make it easy to upload and study
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
master seminar digital applications in india
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Basic Mud Logging Guide for educational purpose
TR - Agricultural Crops Production NC III.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Microbial disease of the cardiovascular and lymphatic systems
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Pre independence Education in Inndia.pdf
RMMM.pdf make it easy to upload and study
Microbial diseases, their pathogenesis and prophylaxis
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
human mycosis Human fungal infections are called human mycosis..pptx
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
master seminar digital applications in india
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Supply Chain Operations Speaking Notes -ICLT Program
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Renaissance Architecture: A Journey from Faith to Humanism
102 student loan defaulters named and shamed – Is someone you know on the list?
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf

Exception handling in JAVA

  • 1. Exception Handling in JAVA By – Kunal Singh Jaskaran Singh CLASS PRESENTATION
  • 2. What is Exception? • An exception is a problem that arises during the execution of a program. When an Exception occurs the normal flow of the program is disrupted and the program terminates abnormally • Exception Handling is a mechanism to handle runtime errors.
  • 3. Situations in which exception can occur :- • User entering invalid data. • Opening a non-existing file. • Network connections problem. • Number format exception.
  • 4. Types of Exception • Checked exceptions − A checked exception is an exception that occurs at the compile time, these are also called as Compile time exceptions. • Unchecked exceptions − An unchecked exception is an exception that occurs at the time of execution. These are also called as Runtime Exceptions. • Errors − These are not exceptions at all, but problems that arise beyond the control of the user or the programmer. e.g. OutOfMemoryError, VirtualMachineError.
  • 6. Try-Catch Block • Try block- It is used to enclose the code that might throw an exception. It must be used within the method. • Catch block- It is used to handle the Exception. It must be used after the try block only. It involves declaring the type of exception you are trying to catch. Syntax:- try { // Protected code } catch(ExceptionName e) { // Catch block }
  • 7. Example (without exception handling) public class Testtrycatch1{ public static void main(String args[]){ int data=50/0; System.out.print("rest "); System.out.print(“of"); System.out.print(“the"); System.out.print(“code"); } } Output- Exception in thread main java.lang.ArithmeticException:/ by zero
  • 8. Example (with exception handling) public class Testtrycatch2{ public static void main(String args[]){ try{ int data=50/0; } catch(ArithmeticException e) { System.out.println(e); } System.out.println("rest of the code..."); } } Output- Exception in thread main java.lang.ArithmeticException:/ by zero rest of the code...
  • 9. Multiple Catch Block 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(“e");} catch(ArrayIndexOutOfBoundsException e){System.out.println(“e");} System.out.println("rest of the code..."); } } Output- Exception in thread main java.lang.ArithmeticException:/ by zero rest of the code...
  • 10. Some common Sub-Classes of exception are:- • ArithmeticException - If we divide any number by zero, there occurs an ArithmeticException int a=50/0; • NullPointerException - If we have null value in any variable, performing any operation by the variable occurs an NullPointerException. String s=null; System.out.println(s.length());
  • 11. • ArrayIndexOutOfBoundsException - If we are inserting any value in the wrong index, it would result ArrayIndexOutOfBoundsException. int a[]=new int[5]; a[10]=50; • NumberFormatException- The wrong formatting of any value, may occur NumberFormatException. String s="abc"; int i=Integer.parseInt(s);
  • 12. Finally block • Finally block is a block that is used to execute important code. • It is always executed whether exception is handled or not. • The finally block follows a try block or a catch block. try { // Protected code } catch (ExceptionType1 e1) { // Catch block } catch (ExceptionType2 e2) { // Catch block } catch (ExceptionType3 e3) { // Catch block } finally { // The finally block always executes. }
  • 13. Example public class TestFinallyBlock2{ public static void main(String args[]){ try{ int data=25/0; System.out.println(data); } catch(ArithmeticException e){ System.out.println(e);} finally{ System.out.println("finally block will execute");} } } Output:Exception in thread main java.lang.ArithmeticException:/ by zero finally block will execute
  • 14. User defined exception • If you are creating your own Exception that is known as custom exception or user-defined exception. • All exceptions must be a child of Throwable.
  • 15. Throw keyword • Java throw keyword is used to explicitly throw an exception. • We can throw either checked or uncheked exception in java by throw keyword. • The throw keyword is mainly used to throw user defined exception. Syntax:- throw exception;
  • 16. Throws Keyword • The throws keyword is used to declare an exception. • It gives an information to the programmer that there may occur an exception so it is better for the programmer to provide the exception handling code so that normal flow can be maintained. • Syntax:- return_type method_name() throws exception_class_name{ //method code }
  • 17. Difference between throw and throws in Java

Editor's Notes

  • #3: So exception are nothing but some abnormal and typically an event or conditions that arise during the execution which may intrrupt the normal flow of program. and
  • #4: And many more…
  • #5: There are mainly two types of exceptions: checked and unchecked where error is considered as unchecked exception. Checked- These exceptions cannot be ignored at the time of compilation, the programmer should take care of (handle) these exceptions. Unchecked - These include programming bugs, such as logic errors or improper use of an API. Runtime exceptions are ignored at the time of compilation.
  • #6: All exception classes are subtypes of the java.lang.Exception class. The exception class and error are the subclasses of the Throwable class.
  • #7: try block must be followed by either catch or finally block. You can use multiple catch block with a single try.
  • #8: In this program we have divide a integer value 50 by 0 and below this there are print messages. When we will execute it a exception ArithmeticException divided by zero will occur and rest of the code will not execute.
  • #9: Now in this code using try catch block the exception can be handeled. The try clock will throw exception object to catch block and it will handle the exception. An the output will be
  • #10: A try block can be followed by multiple catch blocks. We can make multiple catch block . If the data type of the exception thrown matches ExceptionType1, it gets caught there. If not, the exception passes down to the second catch statement. In this program first exception will occur which is aaruthmatic exceotion. The output will be-
  • #11: Here are the some sub classes of exception
  • #13: 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.
  • #15: It means we have to extend the exception class class InvalidAgeException extends Exception{    InvalidAgeException(String s){     super(s);    }   }   class TestCustomException1{         static void validate(int age)throws InvalidAgeException{        if(age<18)         throw new InvalidAgeException("not valid");        else         System.out.println("welcome to vote");      }            public static void main(String args[]){         try{         validate(13);         }catch(Exception m){System.out.println("Exception occured: "+m);}            System.out.println("rest of the code...");     }   }  
  • #16: import java.lang.Exception; class MyException extends Exception { MyException(String message) { super(message); } } class TestMyException { output- caught myexception number is too small public static void main(String[] args) final block { int x = 5, y = 1000; try { float z = x / y; if(z < 0.01) { throw new MyException("Number is too small"); } }  catch(MyException e) { System.out.println(“caught My Exception”); System.out.println(e.getMessage()); } finally { Number is too small } System.out.println(“final block"); }} }
  • #17: Only checked exception should be declared