01: package com.vividsolutions.jump.geom;
02:
03: /**
04: * Indicates that an {@link AffineTransformation}
05: * is non-invertible.
06: *
07: * @author Martin Davis
08: */
09: public class NoninvertibleTransformationException extends Exception {
10: public NoninvertibleTransformationException() {
11: super ();
12: }
13:
14: public NoninvertibleTransformationException(String msg) {
15: super(msg);
16: }
17: }
|