diff options
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/awt/AWTError.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/java/awt/AWTError.java b/libjava/java/awt/AWTError.java index f276177..1ba1cbb 100644 --- a/libjava/java/awt/AWTError.java +++ b/libjava/java/awt/AWTError.java @@ -8,16 +8,16 @@ details. */ package java.awt; -/** +/** An exception of this type is thrown by AWT in some situations, + * usually when major problems are encountered. * @author Tom Tromey <tromey@cygnus.com> * @date April 8, 2000 */ - -/* Status: Believed complete and correct to JDK 1.2. */ - - -public class AWTError extends IllegalStateException +public class AWTError extends Error { + /** Make a new instance of AWTError + * @param s Text associated with the exception + */ public AWTError (String s) { super (s); |