01: /*
02: * Copyright (C) 2005, 2006 data2c GmbH (www.data2c.com)
03: *
04: * Author: Wolfgang S. Kechel - wolfgang.kechel@data2c.com
05: *
06: * J2ME version of java.awt.geom.NoninvertibleTransformException.
07: */
08:
09: //#ifndef j2se
10: package org.awt.geom;
11:
12: /**
13: * The <code>NoninvertibleTransformException</code> class represents
14: * an exception that is thrown if an operation is performed requiring
15: * the inverse of an {@link AffineTransform} object but the
16: * <code>AffineTransform</code> is in a non-invertible state.
17: */
18:
19: public class NoninvertibleTransformException extends
20: java.lang.Exception {
21: /**
22: * Constructs an instance of
23: * <code>NoninvertibleTransformException</code>
24: * with the specified detail message.
25: * @param s the detail message
26: */
27: public NoninvertibleTransformException(String s) {
28: super (s);
29: }
30: }
31: //#endif
|