JAVA EXCEPTIONS


Contents


Error Handling

Runtime errors can be divided into low-level errors that involve violating constraints, such as:

and higher-level, logical errors, such as violations of a function's precondition:

Logical errors can lead to low-level errors if they are not detected. Often, it is better to detect them (to provide better feedback).

Errors can arise due to:

Note that recovery is often not possible at the point of the error (because the error may occur inside some utility function that doesn't know anything about the overall program or what error recovery should involve). Therefore, it is desirable to "pass the error up" to a level that can deal with it.

There are several possible ways to handle errors:

Exceptions

Idea:

Exceptions can be built-in (actually, defined in one of Java's standard libraries) or user-defined. Here are some examples of built-in exceptions with links to their documentation:

How to Catch Exceptions

Catch exceptions using try blocks:

    try {
       // statements that might cause exceptions
       // possibly including function calls
    } catch ( exception-1 id-1 ) {
       // statements to handle this exception 
    } catch ( exception-2 id-2 ) {
       // statements to handle this exception 
    .
    .
    .
    } finally {
       // statements to execute every time this try block executes
    }

Notes:

  1. Each catch clause specifies the type of one exception, and provides a name for it (similar to the way a function header specifies the type and name of a parameter). Java exceptions are objects, so the statements in a catch clause can refer to the thrown exception object using the specified name.

  2. The finally clause is optional.

  3. In general, there can be one or more catch clauses. If there is a finally clause, there can be zero catch clauses.
Example (a program that tries to open a file named by the first command-line argument for reading)

Notes:

  1. The program really should make sure there is a command-line argument before attempting to use args[0].
  2. Also, it probably makes more sense to put the try block in a loop, so that if the file is not found the user can be asked to enter a new file name, and a new attempt to open the file can be made.
  3. As is, if the user runs the program with a bad file name foo, the message "file foo not found" will be printed, and the program will halt.
  4. If there were no try block and the program were run with a bad file name foo, a more complicated message, something like this: would be printed. (Actually, if there were no try/catch for the FileNotFoundException, the program wouldn't compile because it fails to list that exception as one that might be thrown. We'll come back to that issue later...)

More About the Finally Clause

Checked and Unchecked Exceptions

Every exception is either a checked exception or an unchecked exception. If a method includes code that could cause a checked exception to be thrown, then: So in general, you must always include some code that acknowledges the possibility of a checked exception being thrown. If you don't, you will get an error when you try to compile your code.

Exception Hierarchy

                    +--------+
                    | Object |
                    +--------+
		        |
		        |
                   +-----------+
		   | Throwable |
                   +-----------+
                    /         \
		   /           \
          +-------+          +-----------+
          | Error |          | Exception |
          +-------+          +-----------+
	   /  |  \           / |        \
         \________/	  \______/    	 \
			                +------------------+
	unchecked	 checked	| RuntimeException |
					+------------------+
					  /   |    |      \
					 \_________________/
					   
					   unchecked

Choices when calling a function that may throw an exception

  1. Catch and handle the exception.
  2. Catch the exception, then re-throw it or throw another exception.
  3. Ignore the exception (let it "pass up" the call chain).
Note that if your code might cause a checked exception to be thrown; i.e.,: then your function must include a throws clause listing all such exceptions. For example:
    public static void main(String[] args) throws FileNotFoundException, EOFException
    { // an uncaught FileNotFoundException or EOFException may be thrown here }

Only uncaught checked exceptions need to be listed in a function's throws clause. Unchecked exceptions can be caught in a try block, but if not, they need not be listed in the function's throws clause.


TEST YOURSELF #1

Consider the following program (assume that comments are replaced with actual code that works as specified):

Assume that this program is run four times. The first time, function e throws exception Ex1, the second time, it throws exception Ex2, etc. Foe each of the four runs, say what is printed; if an uncaught exception is thrown, say what happens.

solution


How to Define and Throw Exceptions


TEST YOURSELF #2

Question 1: Assume that function f might throw exceptions Ex1, Ex2, or Ex3. Complete function g, outlined below, so that:

Question 2: Consider the following function.

Part A.

Part B.

solution


Summary

Solutions to Self-Study Questions

Test Yourself #1

Test Yourself #2