OSDN Git Service

2ff006f40c5c07fc97f6cc5353f0a0351fdc69df
[pf3gnuchains/gcc-fork.git] / libjava / java / awt / geom / NoninvertibleTransformException.java
1 /* Copyright (C) 2000  Free Software Foundation
2
3    This file is part of libjava.
4
5 This software is copyrighted work licensed under the terms of the
6 Libjava License.  Please consult the file "LIBJAVA_LICENSE" for
7 details.  */
8
9 package java.awt.geom;
10
11 /**
12  * @author Tom Tromey <tromey@cygnus.com>
13  * @date July 15, 2000
14  */
15
16 public class NoninvertibleTransformException extends Exception
17 {
18   public NoninvertibleTransformException (String s)
19   {
20     super (s);
21   }
22 }