exception handling. definition the term exception is shorthand for the phrase "exceptional...

21
Exception Handling

Upload: leonard-mckinney

Post on 27-Dec-2015

222 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Exception Handling

Page 2: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Definition

The term exception is shorthand for the phrase "exceptional event.“

An exception is an event, which occurs during the execution of a program, that disrupts the normal flow of the program's instructions.

Page 3: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Exception Object

When an error occurs within a method, the method creates an object and hands it off to the runtime system.

The object, called an exception object, contains information about the error, including its type and the state of the program when the error occurred.

Creating an exception object and handing it to the runtime system is called throwing an exception.

Page 4: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Exception Types

LinkageError

Error

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Many more classes

Many more classes

Many more classes

IllegalArgumentException

Page 5: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Call Stack

After a method throws an exception, the runtime system attempts to find something to handle it.

The set of possible "somethings" to handle the exception is the ordered list of methods that had been called to get to the method where the error occurred.

The list of methods is known as the call stack (see the next figure).

Page 6: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Call Stack (cont’d)

Page 7: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Call Stack (cont’d)

The runtime system searches the call stack for a method that contains a block of code that can handle the exception.

This block of code is called an exception handler. The search begins with the method in which the error

occurred and proceeds through the call stack in the reverse order in which the methods were called.

When an appropriate handler is found, the runtime system passes the exception to the handler.

Page 8: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Call Stack (cont’d)

An exception handler is considered appropriate if the type of the exception object thrown matches the type that can be handled by the handler.

The exception handler chosen is said to catch the exception.

If the runtime system exhaustively searches all the methods on the call stack without finding an appropriate exception handler, as shown in the next figure, the runtime system (and, consequently, the program) terminates.

Page 9: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Call Stack (cont’d)

Page 10: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

The Catch or Specify Requirement

Valid Java programming language code must honor the Catch or Specify Requirement.

This means that code that might throw certain exceptions must be enclosed by either of the following:– A try statement that catches the exception. The try must provide a handler for the exception.

– A method that specifies that it can throw the exception. The method must provide a throws clause that lists the exception.

Page 11: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Checked vs Unchecked Exceptions Checked exceptions:

– All those exceptions which requires being caught and handled during compile time.

– If compiler doesn’t see try or catch block handling a checked exception, it throws compilation error.

– In other words, checked exceptions are subject to the Catch or Specify Requirement

– All the exceptions which are direct subclass of Exception but not inherit RuntimeException are checked exceptions.

Page 12: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Checked vs Unchecked Exceptions (cont’d)

Checked exceptions:– Example: Suppose an application prompts a user for an input file name, then opens

the file by passing the name to the constructor for java.io.FileReader.

Normally, the user provides the name of an existing, readable file, so the construction of the FileReader object succeeds, and the execution of the application proceeds normally.

But sometimes the user supplies the name of a nonexistent file, and the constructor throws java.io.FileNotFoundException.

A well-written program will catch this exception and notify the user of the mistake, possibly prompting for a corrected file name.

Page 13: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Checked Exceptions

LinkageError

Error

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Many more classes

Many more classes

Many more classes

IllegalArgumentException

Checked exceptions are marked in yellow

Page 14: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Checked vs Unchecked Exceptions (cont’d)

Unchecked exceptions:– Those exceptions whose handling is not verified during

compile time. – In other words, unchecked exceptions are not subject to the

Catch or Specify Requirement– There are two kinds:

Error: – Described by class java.lang.Error and its subclasses

Runtime exception:– Described by class java.lang.RuntimeException and its

subclasses

Page 15: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Unchecked Exceptions

LinkageError

Error

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Many more classes

Many more classes

Many more classes

IllegalArgumentException

Unchecked exceptions are marked in yellow

Page 16: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Checked vs Unchecked Exceptions (cont’d)

Unchecked exceptions:– Error:

Described by class java.lang.Error and its subclasses External to the application and usually unrecoverable. For example, suppose that an application successfully opens a file

for input, but is unable to read the file because of a hardware or system malfunction. The unsuccessful read will throw java.io.IOError. An application might choose to catch this exception, in order to notify the user of the problem — but it also might make sense for the program to print a stack trace and exit.

Page 17: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Checked vs Unchecked Exceptions (cont’d)

Unchecked exceptions:– Runtime Exception:

Described by class java.lang.RuntimeException and its subclasses

Internal to the application and usually unrecoverable. These usually indicate programming bugs, such as logic errors or

improper use of an API. For example, consider the application described previously that

passes a file name to the constructor for FileReader. If a logic error causes a null to be passed to the constructor, the constructor will throw NullPointerException. The application can catch this exception, but it probably makes more sense to eliminate the bug that caused the exception to occur.

Page 18: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Checked vs Unchecked Exceptions (cont’d)

Unchecked exceptions:– In most cases, unchecked exceptions reflect programming logic errors

that are not recoverable. – For example, a NullPointerException is thrown if you access an

object through a reference variable before an object is assigned to it; an IndexOutOfBoundsException is thrown if you access an element in an array outside the bounds of the array.

– These are the logic errors that should be corrected in the program. Unchecked exceptions can occur anywhere in the program. To avoid cumbersome overuse of try-catch blocks, Java does not mandate you to write code to catch unchecked exceptions.

Page 19: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

Benefits of Exception Handling

Separating Error-Handling Code from "Regular" Code Propagating Errors Up the Call Stack Grouping and Differentiating Error Types See:

http://docs.oracle.com/javase/tutorial/essential/exceptions/advantages.html

Page 20: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

References

Oracle. The Java Tutorials. [Online]. http://docs.oracle.com/javase/tutorial/ Oracle. Java SE Tutorial 2012-02-28 [Online].

http://www.oracle.com/technetwork/java/javase/downloads/java-se-7-tutorial-2012-02-28-1536013.html

Oracle. Java SE Downloads [Online]. http://www.oracle.com/technetwork/java/javase/downloads/index.html

Harvey M. Deitel and Paul J. Deitel, Java: How to Program, 6th ed.: Prentice Hall, 2004.

Ken Arnold, James Gosling, and David Holmes, The Java Programming Language, 4th ed.: Addison Wesley Professional, 2005.

Sharon Zakhour, Scott Hommel, Jacob Royal, Isaac Rabinovitch, and Tom Risser, The Java Tutorial Fourth Edition: A Short Course on the Basics, 4th ed.: Addison Wesley Professional, 2006.

Y. Daniel Liang, Introduction to Java Programming, 6th ed.: Pearson Prentice Hall, 2007.

Adapted and adopted from Deitel (2004), IBM (2004), Liang (2007), Oracle (2012), and Wikipedia

Page 21: Exception Handling. Definition  The term exception is shorthand for the phrase "exceptional event.“  An exception is an event, which occurs during the

References

Paul, Javin. Checked vs Unchecked Exception in Java Example. [Online]. http://javarevisited.blogspot.com/2011/12/checked-vs-unchecked-exception-in-java.html

Adapted and adopted from Deitel (2004), IBM (2004), Liang (2007), Oracle (2012), and Wikipedia