SlideShare une entreprise Scribd logo
1  sur  18
To deal with exceptions




                          1
Objectives

On completion of this period, you would be able to
 know:

• Exception handling mechanism in Java
• How to deal with exceptions




                                                     2
Recap

• In the previous class, you have studied about the
  features and advantages of exceptions
• Advantages are
   • Exception is a built-in class in Java
   • Separation of logic of program for error handling
     section
   • Classification of exceptions possible



                                                     3
Exception Handling Mechanism In Java

• As soon as on exception occurs, the Java runtime
  generates an exception object of the required type

• This is known as creating and throwing exception

• It then checks the method, where the exception is
  generated, for any code to handle the exception

• This method is known as exception handling code
                                                       4
Exception Handling Mechanism In Java
                                                      Contd . . .



• Then, the runtime system checks for each block in
  that method for catch block
• Catch block is known as the exception handler
• If there is no catch block
  • The system checks for catch block, in the calling method of
    the current method




                                                                5
Exception Handling Mechanism In Java
                                                Contd . . .



• The system continuously checks nesting methods
  until main method in checked
• If the current method is main method, then the
  exception message is shown on the error output
• If there is a catch block in any method, the exception
  will be handled




                                                          6
What The Java Run Time Does When An
              Exception Occurs ?     Contd . . .


• The method call sequence is     Method3 without an
                                   exception handler
  shown
• The call sequence starts from   Method2 without an     Method call
  the main method                  exception handler
• main calls Method1
                                   Method1 with an       Method call
• Method1 calls Method2
                                   exception handler
• Method2 calls Method3
                                                         Method call
                                          main


                                  Fig. 43.1 Call stack
Exception Handling Mechanism In Java
                                                                     Contd . . .

•   Here, in Method3          Throws         Method3 without an
    exception occurs          exception       exception handler
                                                                         Looking for
•   Method3 does not                                                     appropriate
    contain the exception                                                handler
                              Forwards       Method2 without an
    handler
                              exception       exception handler
•   Method3 is called by
    method2 which has no                                                Looking for
    exception handler         Catches         Method1 with an           appropriate
                              some            exception handler         handler
•   Method2 is called by      exception
    method1
•   Method1 has exception
                                                     main
    handler
•   In Method1 exception is
    handled
                                          Fig. 43.2 Searching the call stack for
                                          exception handler
How To Deal With Exceptions

• Java exception handling is managed via five
  keywords
  •   try
  •   catch
  •   throw
  •   throws
  •   finally




                                            9
How To Deal With Exceptions Contd...

• Program statements that you want to monitor for
  exceptions are put within a try block
• If an exception occurs within the try block, it is
  thrown
• Your code can catch this exception using catch
  and handle it in some rational manner




                                                       10
How To Deal With Exceptions         Contd..

• System-generated exceptions are automatically
  thrown by the Java run-time system
• To manually throw an exception, use the keyword
  throw




                                                    11
How To Deal With Exceptions           Contd..
• Any exception that is thrown out of a method must
   be specified as such by a throws clause
• Any code that absolutely must be executed before a
   method returns is put in a finally block
• finally block is useful – for writing clean up code
e.g :
        To close an opened for file
        To close database connection
        To re-initialize variable. etc
                                                        12
Format Of An Exception-Handling Block
try {
         // block of code to monitor for errors
}
catch (ExceptionType1 exOb) {
        // exception handler for ExceptionType1
}
catch (ExceptionType2 exOb) {
        // exception handler for ExceptionType2
}
finally {
        // block of code to be executed before try block ends
}


                                                                13
Discussion

• How many try blocks can be there in a method?
• It depends on the type of exceptions we fore-
  see
• How many catch blocks can be there for a try
  block?
• Any number of catch blocks



                                             14
Summary

• In this class we have discussed
  • Exception handling mechanism in java
  • The keywords necessary for handling
    exceptions
     • try, catch, throw, throws and finally




                                               15
Quiz

1. Program statements that you want to monitor for
   exceptions are put within a try block

   A. True
   B. False




                                                     16
Quiz

2. Throw keyword is used to throw an exception,
   manually

   A. True
   B. False




                                                  17
Frequently Asked Questions

1. Explain how to deal with exceptions

2. List the keywords that the java uses for handling
   exception mechanism




                                                       18

Contenu connexe

Tendances (7)

Exception Handling in VB.Net
Exception Handling in VB.NetException Handling in VB.Net
Exception Handling in VB.Net
 
Web technology
Web technology Web technology
Web technology
 
Dacj 2-1 b
Dacj 2-1 bDacj 2-1 b
Dacj 2-1 b
 
Nalinee java
Nalinee javaNalinee java
Nalinee java
 
JavaScript statements
JavaScript statementsJavaScript statements
JavaScript statements
 
Bdd and-testing
Bdd and-testingBdd and-testing
Bdd and-testing
 
Exception handling
Exception handlingException handling
Exception handling
 

En vedette (6)

Dead locks9cm604.39
Dead locks9cm604.39Dead locks9cm604.39
Dead locks9cm604.39
 
Runnable interface.34
Runnable interface.34Runnable interface.34
Runnable interface.34
 
Codename: Roslyn
Codename: RoslynCodename: Roslyn
Codename: Roslyn
 
From Runnable and synchronized To atomically() and parallel()
From Runnable and synchronized To atomically() and parallel()From Runnable and synchronized To atomically() and parallel()
From Runnable and synchronized To atomically() and parallel()
 
Cross-Platform Mobile Development using Visual Studio and Xamarin
Cross-Platform Mobile Development using Visual Studio and XamarinCross-Platform Mobile Development using Visual Studio and Xamarin
Cross-Platform Mobile Development using Visual Studio and Xamarin
 
Runnable: Discover Everything Through Code
Runnable: Discover Everything Through CodeRunnable: Discover Everything Through Code
Runnable: Discover Everything Through Code
 

Similaire à Dealing exception.43

Javaexceptions
JavaexceptionsJavaexceptions
Javaexceptions
parthu310
 
Types of exceptions
Types of exceptionsTypes of exceptions
Types of exceptions
myrajendra
 

Similaire à Dealing exception.43 (20)

Keywords for exceptions.44
Keywords for exceptions.44Keywords for exceptions.44
Keywords for exceptions.44
 
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
 
Chap2 exception handling
Chap2 exception handlingChap2 exception handling
Chap2 exception handling
 
Java-Unit 3- Chap2 exception handling
Java-Unit 3- Chap2 exception handlingJava-Unit 3- Chap2 exception handling
Java-Unit 3- Chap2 exception handling
 
Java Exception Handling
Java Exception HandlingJava Exception Handling
Java Exception Handling
 
Exceptionhandling
ExceptionhandlingExceptionhandling
Exceptionhandling
 
Exception hierarchy
Exception hierarchyException hierarchy
Exception hierarchy
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
16 exception handling - i
16 exception handling - i16 exception handling - i
16 exception handling - i
 
Unit 5
Unit 5Unit 5
Unit 5
 
Exceptions
ExceptionsExceptions
Exceptions
 
Javaexceptions
JavaexceptionsJavaexceptions
Javaexceptions
 
8 Exception Handling
8 Exception Handling8 Exception Handling
8 Exception Handling
 
A36519192_21789_4_2018_Exception Handling.ppt
A36519192_21789_4_2018_Exception Handling.pptA36519192_21789_4_2018_Exception Handling.ppt
A36519192_21789_4_2018_Exception Handling.ppt
 
exception -ppt.pptx
exception -ppt.pptxexception -ppt.pptx
exception -ppt.pptx
 
Exception handling in java
Exception handling  in javaException handling  in java
Exception handling in java
 
9 cm604.42
9 cm604.429 cm604.42
9 cm604.42
 
Types of exceptions
Types of exceptionsTypes of exceptions
Types of exceptions
 
UNIT III 2021R.pptx
UNIT III 2021R.pptxUNIT III 2021R.pptx
UNIT III 2021R.pptx
 

Plus de myrajendra (20)

Fundamentals
FundamentalsFundamentals
Fundamentals
 
Data type
Data typeData type
Data type
 
Hibernate example1
Hibernate example1Hibernate example1
Hibernate example1
 
Jdbc workflow
Jdbc workflowJdbc workflow
Jdbc workflow
 
2 jdbc drivers
2 jdbc drivers2 jdbc drivers
2 jdbc drivers
 
3 jdbc api
3 jdbc api3 jdbc api
3 jdbc api
 
4 jdbc step1
4 jdbc step14 jdbc step1
4 jdbc step1
 
Dao example
Dao exampleDao example
Dao example
 
Sessionex1
Sessionex1Sessionex1
Sessionex1
 
Internal
InternalInternal
Internal
 
3. elements
3. elements3. elements
3. elements
 
2. attributes
2. attributes2. attributes
2. attributes
 
1 introduction to html
1 introduction to html1 introduction to html
1 introduction to html
 
Headings
HeadingsHeadings
Headings
 
Forms
FormsForms
Forms
 
Css
CssCss
Css
 
Views
ViewsViews
Views
 
Views
ViewsViews
Views
 
Views
ViewsViews
Views
 
Starting jdbc
Starting jdbcStarting jdbc
Starting jdbc
 

Dernier

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Dernier (20)

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 

Dealing exception.43

  • 1. To deal with exceptions 1
  • 2. Objectives On completion of this period, you would be able to know: • Exception handling mechanism in Java • How to deal with exceptions 2
  • 3. Recap • In the previous class, you have studied about the features and advantages of exceptions • Advantages are • Exception is a built-in class in Java • Separation of logic of program for error handling section • Classification of exceptions possible 3
  • 4. Exception Handling Mechanism In Java • As soon as on exception occurs, the Java runtime generates an exception object of the required type • This is known as creating and throwing exception • It then checks the method, where the exception is generated, for any code to handle the exception • This method is known as exception handling code 4
  • 5. Exception Handling Mechanism In Java Contd . . . • Then, the runtime system checks for each block in that method for catch block • Catch block is known as the exception handler • If there is no catch block • The system checks for catch block, in the calling method of the current method 5
  • 6. Exception Handling Mechanism In Java Contd . . . • The system continuously checks nesting methods until main method in checked • If the current method is main method, then the exception message is shown on the error output • If there is a catch block in any method, the exception will be handled 6
  • 7. What The Java Run Time Does When An Exception Occurs ? Contd . . . • The method call sequence is Method3 without an exception handler shown • The call sequence starts from Method2 without an Method call the main method exception handler • main calls Method1 Method1 with an Method call • Method1 calls Method2 exception handler • Method2 calls Method3 Method call main Fig. 43.1 Call stack
  • 8. Exception Handling Mechanism In Java Contd . . . • Here, in Method3 Throws Method3 without an exception occurs exception exception handler Looking for • Method3 does not appropriate contain the exception handler Forwards Method2 without an handler exception exception handler • Method3 is called by method2 which has no Looking for exception handler Catches Method1 with an appropriate some exception handler handler • Method2 is called by exception method1 • Method1 has exception main handler • In Method1 exception is handled Fig. 43.2 Searching the call stack for exception handler
  • 9. How To Deal With Exceptions • Java exception handling is managed via five keywords • try • catch • throw • throws • finally 9
  • 10. How To Deal With Exceptions Contd... • Program statements that you want to monitor for exceptions are put within a try block • If an exception occurs within the try block, it is thrown • Your code can catch this exception using catch and handle it in some rational manner 10
  • 11. How To Deal With Exceptions Contd.. • System-generated exceptions are automatically thrown by the Java run-time system • To manually throw an exception, use the keyword throw 11
  • 12. How To Deal With Exceptions Contd.. • Any exception that is thrown out of a method must be specified as such by a throws clause • Any code that absolutely must be executed before a method returns is put in a finally block • finally block is useful – for writing clean up code e.g : To close an opened for file To close database connection To re-initialize variable. etc 12
  • 13. Format Of An Exception-Handling Block try { // block of code to monitor for errors } catch (ExceptionType1 exOb) { // exception handler for ExceptionType1 } catch (ExceptionType2 exOb) { // exception handler for ExceptionType2 } finally { // block of code to be executed before try block ends } 13
  • 14. Discussion • How many try blocks can be there in a method? • It depends on the type of exceptions we fore- see • How many catch blocks can be there for a try block? • Any number of catch blocks 14
  • 15. Summary • In this class we have discussed • Exception handling mechanism in java • The keywords necessary for handling exceptions • try, catch, throw, throws and finally 15
  • 16. Quiz 1. Program statements that you want to monitor for exceptions are put within a try block A. True B. False 16
  • 17. Quiz 2. Throw keyword is used to throw an exception, manually A. True B. False 17
  • 18. Frequently Asked Questions 1. Explain how to deal with exceptions 2. List the keywords that the java uses for handling exception mechanism 18