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

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

Dead locks9cm604.39
Dead locks9cm604.39Dead locks9cm604.39
Dead locks9cm604.39myrajendra
 
Runnable interface.34
Runnable interface.34Runnable interface.34
Runnable interface.34myrajendra
 
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()José Paumard
 
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 XamarinShravan Kumar Kasagoni
 
Runnable: Discover Everything Through Code
Runnable: Discover Everything Through CodeRunnable: Discover Everything Through Code
Runnable: Discover Everything Through CodeNeil Sood
 

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

Keywords for exceptions.44
Keywords for exceptions.44Keywords for exceptions.44
Keywords for exceptions.44myrajendra
 
Exception handling in java.pptx
Exception handling in java.pptxException handling in java.pptx
Exception handling in java.pptxARUNPRANESHS
 
Exception handling
Exception handlingException handling
Exception handlingMinal Maniar
 
Chap2 exception handling
Chap2 exception handlingChap2 exception handling
Chap2 exception handlingraksharao
 
Java-Unit 3- Chap2 exception handling
Java-Unit 3- Chap2 exception handlingJava-Unit 3- Chap2 exception handling
Java-Unit 3- Chap2 exception handlingraksharao
 
Java Exception Handling
Java Exception HandlingJava Exception Handling
Java Exception HandlingGovindanS3
 
Exceptionhandling
ExceptionhandlingExceptionhandling
ExceptionhandlingNuha Noor
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in javaAdil Mehmoood
 
Javaexceptions
JavaexceptionsJavaexceptions
Javaexceptionsparthu310
 
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.pptpromila09
 
exception -ppt.pptx
exception -ppt.pptxexception -ppt.pptx
exception -ppt.pptxDivyaKS18
 
Types of exceptions
Types of exceptionsTypes of exceptions
Types of exceptionsmyrajendra
 
UNIT III 2021R.pptx
UNIT III 2021R.pptxUNIT III 2021R.pptx
UNIT III 2021R.pptxRDeepa9
 

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

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 ConsultingTechSoup
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
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 servicediscovermytutordmt
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
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.pdfchloefrazer622
 
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 GraphThiyagu K
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
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 ImpactPECB
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
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 ...EduSkills OECD
 
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...Sapna Thakur
 

Dernier (20)

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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
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
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
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
 
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
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
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
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
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: 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"
 
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"
 
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...
 

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