SlideShare a Scribd company logo
Exceptions
Pakorn Weecharungsan
Contents
 What are Exceptions?
 The try Statement
 The Exception Classes
 The catch Cause
 The finally Block
 Throwing Exceptions
What are Exceptions?
 An exception is a runtime error in a
program. Examples are when a program
tries to divide a number by 0.
The try Statement
The Exception Classes
The catch Clause
 The catch clause handles exceptions.
There are three forms, allowing different le
vels of processing
The catch Clause
The finally Block
 If a program’s flow of control enters a try
statement that has a finally block, the finally bloc
k is always executed
 If no exception occurs inside the try block, then at the
end of the try block, control skips over any catch claus
es and goes to the finally block
 If an exception occurs inside the try block, then any
appropriate catch clauses in the catch clauses section
are executed, followed by execution of the finally bloc
k
The finally Block
Throwing Exceptions
 You can make your code explicitly raise
an exception by using the throw statement
. The syntax for the throw statement is the
following
Throwing Exceptions

More Related Content

PPTX
Exception Handling in object oriented programming using C++
PPTX
Selenium – Web Browser Automation
PDF
Профессиональные консультации от Светланы Деревенко
PDF
Yourprezi
PPTX
How to create mvc application
DOC
Examen micro
PPT
D4 Introduction to LINQ
PPTX
10 skills developers should invest in for 2014
Exception Handling in object oriented programming using C++
Selenium – Web Browser Automation
Профессиональные консультации от Светланы Деревенко
Yourprezi
How to create mvc application
Examen micro
D4 Introduction to LINQ
10 skills developers should invest in for 2014

Similar to D3 Exceptions (20)

PPTX
Java SE 11 Exception Handling
PPTX
Exception handling in java
PPT
Exceptionhandling
PDF
Exception handling
PPTX
Java-Exception Handling Presentation. 2024
PPTX
Exception Handling In Java Presentation. 2024
PPSX
How to handle exceptions in Java Technology
PPTX
Exception Handling in Java
PPTX
Exception Handling in C#
PPT
Exception Handling Exception Handling Exception Handling
PDF
Ch-1_5.pdf this is java tutorials for all
PPTX
Exception handling
PPTX
Exception handling, Stream Classes, Multithread Programming
PPTX
Java class 7
PPTX
Exception Handling,finally,catch,throw,throws,try.pptx
DOCX
MODULE5_EXCEPTION HANDLING.docx
PDF
16 exception handling - i
PPTX
Exception handling in java
PPT
Exception Handling
PPT
Exception Handling in JAVA
Java SE 11 Exception Handling
Exception handling in java
Exceptionhandling
Exception handling
Java-Exception Handling Presentation. 2024
Exception Handling In Java Presentation. 2024
How to handle exceptions in Java Technology
Exception Handling in Java
Exception Handling in C#
Exception Handling Exception Handling Exception Handling
Ch-1_5.pdf this is java tutorials for all
Exception handling
Exception handling, Stream Classes, Multithread Programming
Java class 7
Exception Handling,finally,catch,throw,throws,try.pptx
MODULE5_EXCEPTION HANDLING.docx
16 exception handling - i
Exception handling in java
Exception Handling
Exception Handling in JAVA
Ad

Recently uploaded (20)

PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Approach and Philosophy of On baking technology
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Electronic commerce courselecture one. Pdf
PDF
cuic standard and advanced reporting.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPT
Teaching material agriculture food technology
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Cloud computing and distributed systems.
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
The AUB Centre for AI in Media Proposal.docx
Approach and Philosophy of On baking technology
Dropbox Q2 2025 Financial Results & Investor Presentation
“AI and Expert System Decision Support & Business Intelligence Systems”
Electronic commerce courselecture one. Pdf
cuic standard and advanced reporting.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
A comparative analysis of optical character recognition models for extracting...
Assigned Numbers - 2025 - Bluetooth® Document
The Rise and Fall of 3GPP – Time for a Sabbatical?
Mobile App Security Testing_ A Comprehensive Guide.pdf
Teaching material agriculture food technology
Building Integrated photovoltaic BIPV_UPV.pdf
A Presentation on Artificial Intelligence
Advanced methodologies resolving dimensionality complications for autism neur...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Cloud computing and distributed systems.
Spectral efficient network and resource selection model in 5G networks
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Ad

D3 Exceptions