// ******************************************************************** // OutOfRangeException.java Author: Lewis and Loftus // // Represents an exceptional condition in which a value is out of // some particular range. //******************************************************************** public class OutOfRangeException extends Exception { private static final long serialVersionUID = 0; //----------------------------------------------------------------- // Sets up the exception object with a particular message. //----------------------------------------------------------------- OutOfRangeException(String message) { super(message); } }