Errors and Exceptions

Similar documents
Exceptions. Errors and Exceptions. Dealing with exceptions. What to do about errors and exceptions

Video 2.1. Arvind Bhusnurmath. Property of Penn Engineering, Arvind Bhusnurmath. SD1x-2 1

ECE 122. Engineering Problem Solving with Java

Day 8. COMP1006/1406 Summer M. Jason Hinek Carleton University

Exceptions - Example. Exceptions - Example

CSC207H: Software Design. Exceptions. CSC207 Winter 2018

Correctness and Robustness

CS 61B Data Structures and Programming Methodology. July 7, 2008 David Sun

Exceptions. Examples of code which shows the syntax and all that

CS159. Nathan Sprague

Programming II (CS300)

Exceptions. CSC207 Winter 2017

Data Structures. 02 Exception Handling

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 7

Exceptions. References. Exceptions. Exceptional Conditions. CSE 413, Autumn 2005 Programming Languages

Exception Handling. General idea Checked vs. unchecked exceptions Semantics of... Example from text: DataAnalyzer.

Exceptions. Produced by. Algorithms. Eamonn de Leastar Department of Computing, Maths & Physics Waterford Institute of Technology

Exceptions. CSE 142, Summer 2002 Computer Programming 1.

Exceptions. Readings and References. Exceptions. Exceptional Conditions. Reading. CSE 142, Summer 2002 Computer Programming 1.

National University. Faculty of Computer Since and Technology Object Oriented Programming

Exceptions. Produced by. Introduction to the Java Programming Language. Eamonn de Leastar

Programming II (CS300)

BBM 102 Introduction to Programming II Spring Exceptions

Lecture 14: Exceptions 10:00 AM, Feb 26, 2018

Pages and 68 in [JN] conventions for using exceptions in Java. Chapter 8 in [EJ] guidelines for more effective use of exceptions.

Java Programming Unit 7. Error Handling. Excep8ons.

COMP1008 Exceptions. Runtime Error

CMSC131. Exceptions and Exception Handling. When things go "wrong" in a program, what should happen.

CSC System Development with Java. Exception Handling. Department of Statistics and Computer Science. Budditha Hettige

BBM 102 Introduction to Programming II Spring 2017

Exception in thread "main" java.lang.arithmeticexception: / by zero at DefaultExceptionHandling.main(DefaultExceptionHandling.

Exceptions Handling Errors using Exceptions

CS159. Nathan Sprague

CSCI 261 Computer Science II

Abstract Classes, Exceptions

Sri Vidya College of Engineering & Technology Question Bank

Internal Classes and Exceptions

CS 3 Introduction to Software Engineering. 3: Exceptions

COMP 213. Advanced Object-oriented Programming. Lecture 17. Exceptions

COMP200 EXCEPTIONS. OOP using Java, based on slides by Shayan Javed

Principles of Software Construction: Objects, Design and Concurrency. Exceptions, scope, static data and methods, and Generics.

Introduction. Exceptions: An OO Way for Handling Errors. Common Runtime Errors. Error Handling. Without Error Handling Example 1

Exceptions and Error Handling

14. Exception Handling

About This Lecture. Outline. Handling Unusual Situations. Reacting to errors. Exceptions

Main concepts to be covered. Handling errors. Some causes of error situations. Not always programmer error. Defensive programming.

CSE 331 Software Design & Implementation

Lecture 19 Programming Exceptions CSE11 Fall 2013

More on Exception Handling

Exceptions. What exceptional things might our programs run in to?

CSCI Object Oriented Design: Java Review Errors George Blankenship. Java Review - Errors George Blankenship 1

What is the purpose of exceptions and exception handling? Vocabulary: throw/raise and catch/handle Exception propagation Java checked and unchecked

Writing your own Exceptions. How to extend Exception

More on Exception Handling

Assertions and Exceptions Lecture 11 Fall 2005

CSCI Object-Oriented Design. Java Review Topics. Program Errors. George Blankenship 1. Java Review Errors George Blankenship

Exceptions and Libraries

Chapter 13 Exception Handling

9. Java Errors and Exceptions

Chapter 9. Exception Handling. Copyright 2016 Pearson Inc. All rights reserved.

Errors. And How to Handle Them

Exceptions vs. Errors Exceptions vs. RuntimeExceptions try...catch...finally throw and throws

Topic 6: Exceptions. Exceptions are a Java mechanism for dealing with errors & unusual situations

CSSE 220 Day 19. Object-Oriented Design Files & Exceptions. Check out FilesAndExceptions from SVN

Exception-Handling Overview

Program Correctness and Efficiency. Chapter 2

CSSE 220 Day 19. Object-Oriented Design Files & Exceptions. Check out FilesAndExceptions from SVN

Comp 249 Programming Methodology Chapter 9 Exception Handling

16-Dec-10. Consider the following method:

OBJECT ORIENTED PROGRAMMING. Course 6 Loredana STANCIU Room B616

ITI Introduction to Computing II

Lecture 14 Summary 3/9/2009. By the end of this lecture, you will be able to differentiate between errors, exceptions, and runtime exceptions.

Exception Handling. Sometimes when the computer tries to execute a statement something goes wrong:

Object Oriented Programming. Week 7 Part 1 Exceptions

Exception Handling. Run-time Errors. Methods Failure. Sometimes when the computer tries to execute a statement something goes wrong:

ITI Introduction to Computing II

A Third Look At Java. Chapter Seventeen Modern Programming Languages, 2nd ed. 1

Assoc. Prof. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

EXCEPTION HANDLING. Summer 2018

PIC 20A Exceptions. Ernest Ryu UCLA Mathematics. Last edited: November 27, 2017

Introduction Unit 4: Input, output and exceptions

Lecture 20. Java Exceptional Event Handling. Dr. Martin O Connor CA166

Exceptions. Computer Science and Engineering College of Engineering The Ohio State University. Lecture 15

Check out FilesAndExceptions from SVN. Exam 2 Review File I/O, Exceptions Vector Graphics Project

Exception Handling: Control. Exception handling is the control of error conditions or other unusual events during the execution of a program.

Download link: Java Exception Handling

EXCEPTION-HANDLING INTRIVIEW QUESTIONS

Programming Languages and Techniques (CIS120)

Supplemental Handout: Exceptions CS 1070, Spring 2012 Thursday, 23 Feb 2012

A problem?... Exceptions. A problem?... A problem?... Suggested Reading: Bruce Eckel, Thinking in Java (Fourth Edition) Error Handling with Exceptions

Here is a hierarchy of classes to deal with Input and Output streams.

17. Handling Runtime Problems

Projeto de Software / Programação 3 Tratamento de Exceções. Baldoino Fonseca/Márcio Ribeiro

6.Introducing Classes 9. Exceptions

Le L c e t c ur u e e 5 To T p o i p c i s c t o o b e b e co c v o e v r e ed e Exception Handling

Administration. Exceptions. Leftovers. Agenda. When Things Go Wrong. Handling Errors. CS 99 Summer 2000 Michael Clarkson Lecture 11

6. Java Errors and Exceptions

CS193j, Stanford Handout #25. Exceptions

CMSC 202. Exceptions

CS115. Chapter 17 Exception Handling. Prof. Joe X. Zhou Department of Computer Science. To know what is exception and what is exception handling

Transcription:

Exceptions

Errors and Exceptions An error is a bug in your program dividing by zero going outside the bounds of an array trying to use a null reference An exception isn t necessarily your fault trying to open a file that isn t there running out of memory As we said before, the distinction isn t very clear but this is one way of looking at things

What to do about errors and exceptions An error is a bug in your program It should be fixed An exception is a problem that your program may encounter The source of the problem is outside your program An exception is not the normal case, but your program must be prepared to deal with it This is not a formal distinction it isn t always clear whether something should be an error or an exception

Dealing with exceptions Most exceptions arise when you are handling files A needed file may be missing You may not have permission to write a file A file may be the wrong type Exceptions may also arise when you use someone else s classes (or they use yours) You might use a class incorrectly Incorrect use should result in an exception E.g., load a negative number of candies in Pez dispenser (will look at it later)

The problem with exceptions Here s what you might like to do: open a file read a line from the file But here s what you might have to do: open a file if the file doesn t exist, inform the user if you don t have permission to use the file, inform the user if the file isn t a text file, inform the user read a line from the file if you couldn t read a line, inform the user etc., etc. All this error checking really gets in the way of understanding the code

Three approaches to error checking 1. Ignore all but the most important errors The code is cleaner, but the program will misbehave when it encounters an unusual error 2. Do something appropriate for every error The code is cluttered, but the program works better You might still forget some error conditions 3. Do the normal processing in one place, handle the errors in another (this is the Java way) The code is at least reasonably uncluttered Java tries to ensure that you handle every error

The try statement Java provides a new control structure, the try statement (also called the try-catch statement) to separate normal code from error handling: try { do the normal code, ignoring possible exceptions } catch (exception_type name) { handle the exception } catch (exception_type name) { handle the exception } You can have as many catch blocks as you want Only one per exception type The first one that matches will execute Eclipse example: IntArrayExample.java

Two ways to deal with Exceptions 1. You can catch exceptions with a try statement When you catch an exception, you can try to repair the problem, or you can just print out information about what happened 2. You can pass the buck by stating that the method in which the exception occurs throws the exception The exception would have to be handled by whoever calls your method Example: void openfile(string filename) throws IOException {... } Which of these you do depends on whose responsibility it is to do something about the exception If the method knows what to do, it should do it If it should really be up to the user (the method caller) to decide what to do, then pass the buck

Exception handling is not optional As in other languages, errors usually just cause your program to crash Other languages leave it up to you whether you want to handle exceptions There are a lot of sloppy programs in the world It s normal for human beings to be lazy Java tries to force you to handle exceptions This is sometimes a pain in the neck, but the result is almost always a better program

Error and Exception are Objects In Java, an error doesn t necessarily cause your program to crash When an error occurs, Java throws an Error object for you to use You can catch this object to try to recover You can ignore the error (the program will crash) When an exception occurs, Java throws an Exception object for you to use You cannot ignore an Exception; you must catch it You get a syntax error if you forget to take care of any possible Exception

The exception hierarchy Throwable: the superclass of throwable objects Error: Usually should not be caught (instead, the bug that caused it should be fixed) Exception: A problem that must be caught RuntimeException: A special subclass of Exception that does not need to be caught Hence, it is the Exceptions that are most important to us (since we have to do something about them)

A few kinds of Exceptions IOException: a problem doing input/output FileNotFoundException: no such file EOFException: tried to read past the End Of File NullPointerException: tried to use a object that was actually null (this is a RuntimeException) ArrayIndexOutOfBoundsException : try to access an element outside of the array bounds (this is a RuntimeException) NumberFormatException: tried to convert a non-numeric String to a number (this is a RuntimeException) OutOfMemoryError: the program has used all available memory (this is an Error) There are about 200 predefined Exception types

finally After all the catch phrases, you can have an optional finally phrase try {... } catch (AnExceptionType e) {... } catch (AnotherExceptionType e) {... } finally {... } Whatever happens in try and catch, even if it does a return statement, the finally code will be executed If no exception occurs, the finally will be executed after the try code In an exception does occur, the finally will be executed after the appropriate catch code

Ordering the catch phrases A try can be followed by many catches Bad: The first one that can catch the exception is the one that will catch the exception catch(exception e) {... } catch(ioexception e) {... } This is bad because IOException is a subclass of Exception, so any IOException will be handled by the first catch The second catch phrase can never be used

Using the exception When you say catch(ioexception e), e is a formal parameter of type IOException A catch phrase is almost like a miniature method e is an instance (object) of class IOException Exception objects have methods you can use Here s an especially useful method that is defined for every exception type: e.printstacktrace(); This prints out what the exception was, and how you got to the statement that caused it The trace of the stack is basically all methods that were called and that led to the exception

Throwing an Exception If your method uses code that might throw an exception, and you don t want to handle the exception in this method, you can say that the method throws the exception Example: String mygetline( ) throws IOException {... } If you do this, then the method that calls this method must handle the exception

Constructing an Exception Exceptions are classes; you can create your own Exception with new Exception types have two constructors: one with no parameters, and one with a String parameter You can subclass Exception to create your own exception type But first, you should look through the predefined exceptions to see if there is already one that s appropriate Programs that require new types of exceptions are somewhat rare We won t be constructing our own exceptions in this class

Throwing a new Exception When writing a new class, sometimes you may want to throw an Exception of your own E.g., when the user is trying to do something that is not allowed (e.g., load a negative number of candies) The syntax is: throw new exception_type(exception message); Eclipse example: PezDispenserPrivate.java