1 package JSci.maths.wavelet; 2 3 10 public class IllegalScalingException extends IllegalArgumentException { 11 public IllegalScalingException () {} 12 public IllegalScalingException (String s) {super(s);} 13 public IllegalScalingException (int n0,int min) { 14 super("The length parameter "+n0+" must be at least "+min+". Please change the wavelet or the number of iterations."); 15 } 16 17 } 18 | Popular Tags |