/** * Calls an exception if the given input is out of range * * @author John Paxton * @version 1.0 */ public class NumberRangeException extends Exception { NumberRangeException (String message) { super (message); } }