/* * Copyright (C) 2005, 2006 data2c GmbH (www.data2c.com) * * Author: Wolfgang S. Kechel - wolfgang.kechel@data2c.com * * J2ME version of java.awt.geom.NoninvertibleTransformException. */ //#ifndef j2se package org.awt.geom; /** * The <code>NoninvertibleTransformException</code> class represents * an exception that is thrown if an operation is performed requiring * the inverse of an {@link AffineTransform} object but the * <code>AffineTransform</code> is in a non-invertible state. */ public class NoninvertibleTransformException extends java.lang.Exception { /** * Constructs an instance of * <code>NoninvertibleTransformException</code> * with the specified detail message. * @param s the detail message */ public NoninvertibleTransformException(String s) { super (s); } } //#endif