Exceptions & exception handling

Slides:



Advertisements
Similar presentations
Recitation 4. 2-D arrays. Exceptions. Animal[] v= new Animal[3]; 2 declaration of array v v null Create array of 3 elements a6 Animal[] null Assign.
Advertisements

CMSC 202 Exceptions 2 nd Lecture. Aug 7, Methods may fail for multiple reasons public class BankAccount { private int balance = 0, minDeposit =
Exceptions & exception handling Use sparingly. Things you can do with exceptions: 1. Define a new exception class. 2. Create an exception instance. 3.
Slides prepared by Rose Williams, Binghamton University Chapter 9 Exception Handling.
Exceptions Ensuring program reliability. Program correctness The term program correctness refers to a program’s working as advertised; that is, it produces.
CS102--Object Oriented Programming
Exceptions Don’t Frustrate Your User – Handle Errors KR – CS 1401 Spring 2005 Picture – sysprog.net.
Exception Handling Chapter 15 2 What You Will Learn Use try, throw, catch to watch for indicate exceptions handle How to process exceptions and failures.
COMP 121 Week 5: Exceptions and Exception Handling.
Chapter 8Java: an Introduction to Computer Science & Programming - Walter Savitch 1 Chapter 8 l Basic Exception Handling »the mechanics of exceptions l.
Exception Handling1. 2 Exceptions  Definition  Exception types  Exception Hierarchy  Catching exceptions  Throwing exceptions  Defining exceptions.
CS 116 OBJECT ORIENTED PROGRAMMING II LECTURE 10 GEORGE KOUTSOGIANNAKIS Copyright: 2014 Illinois Institute of Technology/ George Koutsogiannakis 1.
EXCEPTIONS. What’s an exception?? Change the flow of control when something important happens ideally - we catch errors at compile time doesn’t happen.
Exception Handling Chapter 12.  Errors- the various bugs, blunders, typos and other problems that stop a program from running successfully  Natural.
Chapter 9 Exception Handling Slides prepared by Rose Williams, Binghamton University Kenrick Mock, University of Alaska Anchorage.
Slides prepared by Rose Williams, Binghamton University ICS201 Exception Handling University of Hail College of Computer Science and Engineering Department.
Lecture 28 More on Exceptions COMP1681 / SE15 Introduction to Programming.
Exception handling Dealing with life’s little surprises.
EXCEPTIONS Def: An exception is a run-time error. Examples include: attempting to divide by zero, or manipulate invalid data.
CS102--Object Oriented Programming Lecture 11: Exception Handling Copyright © 2008 Xiaoyan Li.
Chapter 8Java: an Introduction to Computer Science & Programming - Walter Savitch Announcements l Project 6 now out. »Milestone due Oct. 24th »Final project.
Chapter 81 Exception Handling Chapter 8. 2 Reminders Project 5 due Oct 10:30 pm Project 3 regrades due by midnight tonight Discussion groups now.
Slides prepared by Rose Williams, Binghamton University Chapter 9 More Exception Handling.
Exception Handling (Chapter 8) CS 180 Recitation - February 29, 2008 Department of Computer Science Purdue University.
Slides prepared by Rose Williams, Binghamton University ICS201 Lecture 9 : Exception Handling King Fahd University of Petroleum & Minerals College of Computer.
Spring 2008 Mark Fontenot CSE 1341 Principles of Computer Science I Note Set 10.
Computer Programming with JAVA Chapter 8. Exception Handling Basic Exception Handling the mechanics of exceptions Defining and Using Exceptions some "simple"
Sheet 3 HANDLING EXCEPTIONS Advanced Programming using Java By Nora Alaqeel.
Programming and Problem Solving With Java Copyright 1999, James M. Slack Exceptions Handling Exceptions with try and catch The finally-block The throws.
Exception-Handling Fundamentals  A Java exception is an object that describes an exceptional (that is, error) condition that has occurred in a piece of.
EXCEPTIONS There's an exception to every rule.. 2 Introduction: Methods  The signature of a method includes  access control modifier  return type 
Lecture10 Exception Handling Jaeki Song. Introduction Categories of errors –Compilation error The rules of language have not been followed –Runtime error.
Exceptions and Error Handling. Exceptions Errors that occur during program execution We should try to ‘gracefully’ deal with the error Not like this.
CS 116 Object Oriented Programming II Lecture 10 Acknowledgement: Contains materials provided by George Koutsogiannakis and Matt Bauer.
Chapter 14 – Exception Handling
Lecture 14 Throwing Custom Exceptions
Exceptions: When things go wrong
Recitation 2 Exception handling.
Chapter 10 – Exception Handling
OBJECT ORIENTED PROGRAMMING II LECTURE 10 GEORGE KOUTSOGIANNAKIS
MIT AITI 2003 Lecture14 Exceptions
Introduction to Exceptions in Java
CS102 – Exceptions David Davenport Latest: May 2015
Chapter 9 Exception Handling
Computer Science II Exam 1 Review.
Announcements/Reminders
Exception Handling Chapter 9.
Exceptions & exception handling
CMSC 202 Exceptions.
Exception Handling and Reading / Writing Files
Exception Handling Chapter 9 Edited by JJ.
Exception Handling.
Fundamental Error Handling
CMSC 202 Exceptions 2nd Lecture.
CMSC 202 Exceptions 2nd Lecture.
Web Design & Development Lecture 7
Exception Handling in Java
Lecture 11 Objectives Learn what an exception is.
Chapter 9 Exception Handling
Java Exceptions Dan Fleck CS211.
CMSC 202 Exceptions 2nd Lecture.
Errors and Exceptions Error Errors are the wrongs that can make a program to go wrong. An error may produce an incorrect output or may terminate the execution.
Java Programming Exceptions CSC 444 By Ralph B. Bisland, Jr.
Tutorial Exceptions Handling.
Chapter 12 Exception Handling and Text IO Part 1
Exception Handling Contents
Java Exception Dept. Business Computing University of Winnipeg
CMSC 202 Exceptions 2nd Lecture.
CMSC 202 Exceptions.
Java Programming: From Problem Analysis to Program Design, 4e
Presentation transcript:

Exceptions & exception handling

Exceptions & exception handling Use sparingly. Things you can do with exceptions: Define a new exception class. Create an exception instance. Throw an exception. Declare that an exception may be thrown (in a particular function). Handle the possibility that an exception may be thrown.

Exceptions & exception handling Use sparingly. Things you can do with exceptions: Define a new exception class. Create an exception instance. Throw an exception. Declare that an exception may be thrown (in a particular function). Handle the possibility that an exception may be thrown.

1. Define a new exception class extend Exception (or extend a subclass of Exception) See http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Exception.html. This creates a new type. All have a ctor w/ a single String arg. Each has an accessor method called getMessage() that returns the String from the ctor arg.

Define a new exception class example //typical sample code public class DivisionByZeroException extends Exception { public DivisionByZeroException ( ) { super( “Division by zero!” ); } public DivisionByZeroException ( String message ) { super( message );

Define a new exception class example (w/ more information) public class BadNumberException extends Exception { private int mBadNumber; public BadNumberException ( ) { super( “BadNumberException” ); } public BadNumberException ( String message ) { super( message ); public BadNumberException ( int number ) { super( “BadNumberException” ); mBadNumber = number; } public int getBadNumber ( ) { return mBadNumber;

Exceptions & exception handling Use sparingly. Things you can do with exceptions: Define a new exception class. Create an exception instance. Throw an exception. Declare that an exception may be thrown (in a particular function). Handle the possibility that an exception may be thrown.

2. Create an exception instance new Exception( “Uh oh!” ); Exception e = new Exception( “Rats!” );

Exceptions & exception handling Use sparingly. Things you can do with exceptions: Define a new exception class. Create an exception instance. Throw an exception. Declare that an exception may be thrown (in a particular function). Handle the possibility that an exception may be thrown.

3. Throw an exception Ex. throw new Exception( “Invalid value.” ); Exception e = new Exception( “Invalid age.” ); throw e;

Exceptions & exception handling Use sparingly. Things you can do with exceptions: Define a new exception class. Create an exception instance. Throw an exception. Declare that an exception may be thrown (in a particular function). Handle the possibility that an exception may be thrown.

4. Declare (a method that indicates) that an exception may be thrown public int f ( int x ) throws Exception { … }

Exceptions & exception handling Use sparingly. Things you can do with exceptions: Define a new exception class. Create an exception instance. Throw an exception. Declare that an exception may be thrown (in a particular function). Handle the possibility that an exception may be thrown.

5. Handle the possibility that an exception may be thrown The try-catch blocks: try { … } catch (Exception e) { }

Exercises

Exercises 1. What is the output produced by the following code? int waitTime = 46; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 1. What is the output produced by the following code? int waitTime = 46; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” ); Try block entered. Over 30. After catch block.

Exercises 2. What is the output produced by the following code? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 2. What is the output produced by the following code? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” ); Try block entered. Under 30. After catch block.

Exercises 3. What are the throw statements (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 3. What are the throw statements (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 4. What happens when a throw statement is executed? This is a general question. Tell what happens in general, not simply what happens in the code below or some other sample code. int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 5. What is the try block (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 5. What is the try block (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 6. What is the catch block (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 6. What is the catch block (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 7. What is the catch block parameter (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 7. What is the catch block parameter (below)? int waitTime = 12; try { System.out.println( “Try block entered.” ); if (waitTime>30) throw new Exception( “Over 30.” ); else if (waitTime<30) throw new Exception( “Under 30.” ); else System.out.println( “No exception.” ); System.out.println( “Leaving try block.” ); } catch (Exception thrownObject) { System.out.println( thrownObject.getMessage() ); } System.out.println( “After catch block.” );

Exercises 8. Is the following legal? Exception exceptionObject = new Exception( “Oops!” );

Exercises Yes. 8. Is the following legal? Exception exceptionObject = new Exception( “Oops!” ); Yes.

Exercises 9. Is the following legal? Exception exceptionObject = new Exception( “Oops!” ); throw exceptionObject;

Exercises 9. Is the following legal? Exception exceptionObject = new Exception( “Oops!” ); throw exceptionObject; class test { public static void main ( String[] s ) { Exception exceptionObject = new Exception( "Oops!" ); throw exceptionObject; } We need to do one more thing to get it to compile! javac test.java test.java:6: unreported exception java.lang.Exception; must be caught or declared to be thrown throw exceptionObject; ^ 1 error

Exercises 9. Is the following legal? Exception exceptionObject = new Exception( “Oops!” ); throw exceptionObject; class test { public static void main ( String[] s ) throws Exception { Exception exceptionObject = new Exception( "Oops!" ); throw exceptionObject; } class test { public static void main ( String[] s ) throws Exception { Exception exceptionObject = new Exception( "Oops!" ); try { throw exceptionObject; } catch (Exception e) { } }

Try-catch blocks examples Recall the Integer class (see http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Integer.html). What method do we use to convert a String into an int? What happens if the String does not contain an int? Try it. What happens when we walk off of the end of an array? Can you avoid this behavior?

Useful exception subclasses ArrayIndexOutOfBoundsException NumberFormatException IOException NoSuchMethodException FileNotFoundException

Exercises 10. Define an exception class called PowerFailureException. The class should have a ctor w/ no parameters. If an exception is thrown with this zero-argument ctor, getMessage should return “Power Failure!” The class should also have a ctor w/ a single parameter of type String. If an exception is thrown w/ this ctor, then getMessage returns the value that was used as an argument to the ctor.

Exercises 10. Define an exception class called PowerFailureException. The class should have a ctor w/ no parameters. If an exception is thrown with this zero-argument ctor, getMessage should return “Power Failure!” The class should also have a ctor w/ a single parameter of type String. If an exception is thrown w/ this ctor, then getMessage returns the value that was used as an argument to the ctor.

Exercises 11. Define an exception class called TooMuchStuffException. The class should have a ctor w/ no parameters. If an exception is thrown with this zero-argument ctor, getMessage should return “Too much stuff!” The class should also have a ctor w/ a single parameter of type String. If an exception is thrown w/ this ctor, then getMessage returns the value that was used as an argument to the ctor.

Exercises 12. Suppose the exception class ExerciseException is defined as follows: public class ExerciseException extends Exception { public ExerciseException ( ) { super("Exercise Exception thrown!"); System.out.println("Exception thrown."); } public ExerciseException ( String message ) { super(message); System.out.println( "ExerciseException invoked with an argument."); What output would be produced by the following code (which is just an exercise and not likely to occur in a program)? ExerciseException e = new ExerciseException( “Do be do” ); System.out.println( e.getMessage() );

Exercises 14. Suppose the exception class MyException is defined as follows: public class MyException extends Exception { public MyException ( ) { super("My Exception thrown!"); } public MyException ( String message ) { super("MyException: " + message); What output would be produced by the following code? int number; try { System.out.println( “try block entered” ); number = 42; if (number>0) throw new MyException( “Hi Mom!” ); System.out.println( “leaving try block” ); } catch (MyException exceptionObject) { System.out.println( exceptionObject.getMessage() ); System.out.println( “end of example.” );

Exercises 15. Suppose the exception class MyException is defined as follows: public class MyException extends Exception { public MyException ( ) { super("My Exception thrown!"); } public MyException ( String message ) { super("MyException: " + message); What output would be produced by the following code? int number; try { System.out.println( “try block entered” ); number = 42; if (number>0) throw new MyException( “Hi Mom!” ); System.out.println( “leaving try block” ); } catch (Exception exceptionObject) { //was MyException System.out.println( exceptionObject.getMessage() ); System.out.println( “end of example.” );

Exercises 16. Suppose the exception class MyException is defined as follows: public class MyException extends Exception { public MyException ( ) { super("My Exception thrown!"); } public MyException ( String message ) { super("MyException: " + message); What output would be produced by the following code? int number; try { System.out.println( “try block entered” ); number = -58; //was 42 if (number>0) throw new MyException( “Hi Mom!” ); System.out.println( “leaving try block” ); } catch (MyException exceptionObject) { System.out.println( exceptionObject.getMessage() ); System.out.println( “end of example.” );

Multiple catch blocks More general form of try-catch blocks: try { … } catch (NegativeNumberException e) { } catch (DivisionByZeroException e) { } The order of catch blocks is important as they are evaluated in sequence. So put most specific first.

Exercises int n; try { n = 42; if (n > 0) throw new Exception(); 19. What output will be produced by the following code? public class NegativeNumberException extends Exception { public NegativeNumberException ( ) super( "Negative Number Exception!“ ); } public NegativeNumberException ( String message ) super( message ); int n; try { n = 42; if (n > 0) throw new Exception(); else if (n < 0) throw new NegativeNumberException(); else System.out.println( “bingo!” ); } catch (NegativeNumberException e) { System.out.println( “first catch” ); } catch (Exception e) { System.out.println( “second catch” ); } System.out.println( “end of exercise” );

Exercises int n; try { n = -42; //was 42 if (n > 0) 20. What output will be produced by the following code? public class NegativeNumberException extends Exception { public NegativeNumberException ( ) super( "Negative Number Exception!“ ); } public NegativeNumberException ( String message ) super( message ); int n; try { n = -42; //was 42 if (n > 0) throw new Exception(); else if (n < 0) throw new NegativeNumberException(); else System.out.println( “bingo!” ); } catch (NegativeNumberException e) { System.out.println( “first catch” ); } catch (Exception e) { System.out.println( “second catch” ); } System.out.println( “end of exercise” );

Exercises int n; try { n = 0; //was 42 if (n > 0) 21. What output will be produced by the following code? public class NegativeNumberException extends Exception { public NegativeNumberException ( ) super( "Negative Number Exception!“ ); } public NegativeNumberException ( String message ) super( message ); int n; try { n = 0; //was 42 if (n > 0) throw new Exception(); else if (n < 0) throw new NegativeNumberException(); else System.out.println( “bingo!” ); } catch (NegativeNumberException e) { System.out.println( “first catch” ); } catch (Exception e) { System.out.println( “second catch” ); } System.out.println( “end of exercise” );

Exercises int n; try { n = -42; //was 42 if (n > 0) What output will be produced by the following code? public class NegativeNumberException extends Exception { public NegativeNumberException ( ) super( "Negative Number Exception!“ ); } public NegativeNumberException ( String message ) super( message ); int n; try { n = -42; //was 42 if (n > 0) throw new Exception(); else if (n < 0) throw new NegativeNumberException(); else System.out.println( “bingo!” ); } catch (Exception e) { System.out.println( “first catch” ); } catch (NegativeNumberException e) { System.out.println( “second catch” ); } System.out.println( “end of exercise” );

Throwing exceptions in methods Methods can throw exceptions, and/or call methods that throw exceptions. Catch or declare rule: Such a method must then contain a try-catch block (already discussed), and/or the function heading must specify that the method may throw an exception. The catch or declare rule is not always enforced. Checked exceptions (descendents of Exception) Unchecked exceptions (descendents of RuntimeException)

Declare (a method that indicates) that an exception may be thrown public int f ( int x ) throws Exception { … } public boolean g ( ) throws DivideByZeroException, SomeOtherException {

Useful methods that may throw exceptions What method can be used to convert strings to integers? Open a file for reading (see http://java.sun.com/j2se/1.5.0/docs/api/java/io/FileInputStream.html) The Scanner class (see http://java.sun.com/j2se/1.5.0/docs/api/java/util/Scanner.html#nextInt())

finally clause Most general form of try-catch-finally blocks: try { … } catch (ExceptionClass1 e) { } catch (ExceptionClass2 e) { } catch (ExceptionClassn e) { } finally { //code executed whether or not an exception was thrown }

finally clause Three cases: no exception occurs in the try block an exception occurs in the try block and is caught an exception occurs in the try block but doesn’t match any catch

Exercises 29. What is the output of the following program? What would be the output if the argument to exerciseMethod was -42 instead of 42. How about 0? public class FinallyDemo { public static void main ( String[] args ) { try { exerciseMethod( 42 ); } catch(Exception e) { System.out.println( "Caught in main.“ ); } public static void exerciseMethod ( int n ) throws Exception { if (n > 0) throw new Exception( ); else if (n < 0) throw new NegativeNumberException( ); else System.out.println( "No Exception." ); System.out.println( "Still in sampleMethod." ); } catch (NegativeNumberException e) { System.out.println( "Caught in sampleMethod." ); } finally { System.out.println( "In finally block." ); System.out.println( "After finally block." );

Exercises 22. What is the output produced by the following program? public class Exercise { public static void main ( String[] args ) { try { System.out.println( "Trying" ); sampleMethod( 98.6 ); System.out.println( "Trying after call." ); } catch(Exception e) { System.out.println( "Catching." ); } System.out.println( "End program." ); public static void sampleMethod ( double test ) throws Exception { System.out.println( "Starting sampleMethod." ); if (test < 100) throw new Exception( );

Exercises 23. What is the output produced by the following program? public class Exercise { public static void main ( String[] args ) { try { System.out.println( "Trying" ); sampleMethod( 212 ); //was 98.6 System.out.println( "Trying after call." ); } catch(Exception e) { System.out.println( "Catching." ); } System.out.println( "End program." ); public static void sampleMethod ( double test ) throws Exception { System.out.println( "Starting sampleMethod." ); if (test < 100) throw new Exception( );

Exercises 24. Correct the following method definition by adding a suitable throws clause: public static void doStuff ( int n ) { if (n<0) throw new Exception( “Negative number.” ); } 25. What happens if an exception is thrown inside a method invocation but the exception is not caught inside the method?

Exercises 30. What is the output of the following? import java.util.Scanner; import java.util.InputMismatchException; public class InputMismatchExceptionDemo { public static void main ( String[] args ) { Scanner keyboard = new Scanner( System.in ); int number = 0; //to keep compiler happy boolean done = false; while (! done) { try { System.out.println( "Enter a whole number:" ); //number = keyboard.nextInt(); done = true; } catch (InputMismatchException e) { keyboard.nextLine(); System.out.println( "Not a correctly written whole number.“ ); System.out.println( "Try again. " ); } System.out.println( "You entered " + number );

Exercises import java.util.Scanner; import java.util.InputMismatchException; public class InputMismatchExceptionDemo { public static void main ( String[] args ) { Scanner keyboard = new Scanner( System.in ); int number = 0; //to keep compiler happy boolean done = false; while (! done) { try { System.out.println( "Enter a whole number:" ); //number = keyboard.nextInt(); done = true; } catch (InputMismatchException e) { keyboard.nextLine(); System.out.print( "Not a correctly written “); System.out.println( “whole number.“ ); System.out.println( "Try again. " ); } System.out.println( "You entered " + number ); 31. Give the definition for the following method. Use code similar to this code. /** Precondition: keyboard is an object of the class Scanner that has been set up for keyboard input (as we have been doing right along). Returns: An int value entered at the keyboard. If the user enters an incorrectly formed input she or he is prompted to reenter the value. */