1 package JSci.maths; 2 3 /** 4 * This exception occurs when a numerical algorithm exceeds it maximum number of allowable iterations. 5 * @version 1.0 6 * @author Mark Hale 7 */ 8 public final class MaximumIterationsExceededException extends Exception { 9 /** 10 * Constructs a MaximumIterationsExceededException with no detail message. 11 */ 12 public MaximumIterationsExceededException() {} 13 /** 14 * Constructs a MaximumIterationsExceededException with the specified detail message. 15 */ 16 public MaximumIterationsExceededException(String s) { 17 super(s); 18 } 19 } 20 21