1 /* 2 * @(#)NoninvertibleTransformException.java 1.18 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.awt.geom; 9 10 /** 11 * The <code>NoninvertibleTransformException</code> class represents 12 * an exception that is thrown if an operation is performed requiring 13 * the inverse of an {@link AffineTransform} object but the 14 * <code>AffineTransform</code> is in a non-invertible state. 15 * @version 1.18, 12/19/03 16 */ 17 18 public class NoninvertibleTransformException extends java.lang.Exception { 19 /** 20 * Constructs an instance of 21 * <code>NoninvertibleTransformException</code> 22 * with the specified detail message. 23 * @param s the detail message 24 * @since 1.2 25 */ 26 public NoninvertibleTransformException(String s) { 27 super (s); 28 } 29 } 30