aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/AWTException.java
diff options
context:
space:
mode:
authorBryce McKinlay <bryce@waitaki.otago.ac.nz>2002-08-09 04:26:17 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2002-08-09 05:26:17 +0100
commit7bde45b2eb84502b62e77e46d947e46dcbd333d6 (patch)
treecdf9958b411887bead2263ea8ef0bdfc8eae6319 /libjava/java/awt/AWTException.java
parent097684ce62b505168739fc98e952f92a8719a1fa (diff)
downloadgcc-7bde45b2eb84502b62e77e46d947e46dcbd333d6.zip
gcc-7bde45b2eb84502b62e77e46d947e46dcbd333d6.tar.gz
gcc-7bde45b2eb84502b62e77e46d947e46dcbd333d6.tar.bz2
AWT/Swing merge from GNU Classpath.
From-SVN: r56147
Diffstat (limited to 'libjava/java/awt/AWTException.java')
-rw-r--r--libjava/java/awt/AWTException.java41
1 files changed, 21 insertions, 20 deletions
diff --git a/libjava/java/awt/AWTException.java b/libjava/java/awt/AWTException.java
index 0392691..e4ab6c9 100644
--- a/libjava/java/awt/AWTException.java
+++ b/libjava/java/awt/AWTException.java
@@ -1,5 +1,5 @@
/* AWTException.java -- Generic AWT exception
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -39,25 +39,26 @@ exception statement from your version. */
package java.awt;
/**
- * This is a generic exception that indicates an error occurred in the
- * AWT system.
- *
- * @author Aaron M. Renn (arenn@urbanophile.com)
- */
+ * This is a generic exception that indicates an exception occurred in the
+ * Abstract Window Toolkit (AWT) system.
+ *
+ * @author Aaron M. Renn <arenn@urbanophile.com>
+ * @status updated to 1.4
+ */
public class AWTException extends Exception
{
+ /**
+ * Compatible with JDK 1.0+.
+ */
+ private static final long serialVersionUID = -1900414231151323879L;
-/**
- * Initializes a new instance of <code>AWTException</code> with the
- * specified detailed error message.
- *
- * @param message The detailed error message.
- */
-public
-AWTException(String message)
-{
- super(message);
-}
-
-} // class AWTException
-
+ /**
+ * Create a new instance with the specified detailed error message.
+ *
+ * @param message the detailed error message
+ */
+ public AWTException(String message)
+ {
+ super(message);
+ }
+} // class AWTException