1. /*
  2. * @(#)NoninvertibleTransformException.java 1.15 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.awt.geom;
  11. /**
  12. * The <code>NoninvertibleTransformException</code> class represents
  13. * an exception that is thrown if an operation is performed requiring
  14. * the inverse of an {@link AffineTransform} object but the
  15. * <code>AffineTransform</code> is in a non-invertible state.
  16. * @version 1.15, 02/02/00
  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. }