FileDocCategorySizeDatePackage
NoninvertibleTransformException.javaAPI DocJava SE 5 API881Fri Aug 26 14:56:52 BST 2005java.awt.geom

NoninvertibleTransformException

public class NoninvertibleTransformException extends Exception
The NoninvertibleTransformException class represents an exception that is thrown if an operation is performed requiring the inverse of an {@link AffineTransform} object but the AffineTransform is in a non-invertible state.
version
1.18, 12/19/03

Fields Summary
Constructors Summary
public NoninvertibleTransformException(String s)
Constructs an instance of NoninvertibleTransformException with the specified detail message.

param
s the detail message
since
1.2

        super (s);
    
Methods Summary