01: package JSci.maths;
02:
03: /**
04: * This exception occurs when there is a problem involving an object's dimensions.
05: * @version 1.1
06: * @author Mark Hale
07: */
08: public class DimensionException extends IllegalArgumentException {
09: /**
10: * Constructs a DimensionException with no detail message.
11: */
12: public DimensionException() {
13: }
14:
15: /**
16: * Constructs a DimensionException with the specified detail message.
17: */
18: public DimensionException(String s) {
19: super(s);
20: }
21: }
|