diff options
Diffstat (limited to 'libjava/java/awt/geom/NoninvertibleTransformException.java')
-rw-r--r-- | libjava/java/awt/geom/NoninvertibleTransformException.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libjava/java/awt/geom/NoninvertibleTransformException.java b/libjava/java/awt/geom/NoninvertibleTransformException.java new file mode 100644 index 0000000..2ff006f --- /dev/null +++ b/libjava/java/awt/geom/NoninvertibleTransformException.java @@ -0,0 +1,22 @@ +/* Copyright (C) 2000 Free Software Foundation + + This file is part of libjava. + +This software is copyrighted work licensed under the terms of the +Libjava License. Please consult the file "LIBJAVA_LICENSE" for +details. */ + +package java.awt.geom; + +/** + * @author Tom Tromey <tromey@cygnus.com> + * @date July 15, 2000 + */ + +public class NoninvertibleTransformException extends Exception +{ + public NoninvertibleTransformException (String s) + { + super (s); + } +} |