All Downloads are FREE. Search and download functionalities are using the official Maven repository.

JSci.maths.statistics.OutOfRangeException Maven / Gradle / Ivy

package JSci.maths.statistics; 

/**
* This exception occurs if an argument in a statistics function is out-of-range.
* @version 1.0
* @author Jaco van Kooten
*/
public class OutOfRangeException extends IllegalArgumentException {
        /**
        * Constructs an OutOfRangeException with no detail message.
        */
        public OutOfRangeException() {
        }
        /**
        * Constructs an OutOfRangeException with the specified detail message.
        */
        public OutOfRangeException(String s) {
                super(s);
        }
}
	




© 2015 - 2024 Weber Informatics LLC | Privacy Policy