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