/*********************************************************************
*  OutOfRangeException.java       Author: Lewis/Loftus
*  Listing 10.6  page 544
*  Modified by e. adams
*
*  This class extends the previously defined Exception class
*  When the OutOfRangeException object is created in another class
*  that class will need to pass in a message in the form of a String
*  to be printed when an OutOfRangeException is thrown.  The call to
*  super will be discussed in class.
*/

public class OutOfRangeException extends Exception
{
   OutOfRangeException (String message)
   {
      super (message);  
   }
}
