/[classpath]/classpath/java/awt/geom/NoninvertibleTransformException.java
ViewVC logotype

Diff of /classpath/java/awt/geom/NoninvertibleTransformException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mark, Tue Jan 22 22:26:59 2002 UTC revision 1.3 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* Copyright (C) 2000, 2002  Free Software Foundation  /* NoninvertibleTransformException.java -- a transform can't be inverted
2       Copyright (C) 2000, 2002 Free Software Foundation
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 37  exception statement from your version. * Line 38  exception statement from your version. *
38  package java.awt.geom;  package java.awt.geom;
39    
40  /**  /**
41     * Thrown if an operation requires an inverse of an
42     * <code>AffineTransform</code>, but the transform is in a non-invertible
43     * state.
44     *
45   * @author Tom Tromey <tromey@cygnus.com>   * @author Tom Tromey <tromey@cygnus.com>
46   * @date July 15, 2000   * @see AffineTransform
47     * @status updated to 1.4
48   */   */
   
49  public class NoninvertibleTransformException extends Exception  public class NoninvertibleTransformException extends Exception
50  {  {
51    public NoninvertibleTransformException (String s)    /**
52       * Compatible with JDK 1.2+.
53       */
54      private static final long serialVersionUID = 6137225240503990466L;
55    
56      /**
57       * Create an exception with a message.
58       *
59       * @param s the message
60       */
61      public NoninvertibleTransformException(String s)
62    {    {
63      super (s);      super(s);
64    }    }
65  }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26