1 package JSci.maths.statistics; 2 3 /** 4 * This exception occurs if an argument in a statistics function is out-of-range. 5 * @version 1.0 6 * @author Jaco van Kooten 7 */ 8 public class OutOfRangeException extends IllegalArgumentException { 9 /** 10 * Constructs an OutOfRangeException with no detail message. 11 */ 12 public OutOfRangeException() { 13 } 14 /** 15 * Constructs an OutOfRangeException with the specified detail message. 16 */ 17 public OutOfRangeException(String s) { 18 super(s); 19 } 20 } 21 22