mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:20:24 +08:00
AWTError.java: Extend Error, not IllegalStateException.
* java/awt/AWTError.java: Extend Error, not IllegalStateException. From-SVN: r37987
This commit is contained in:
parent
611b1df48a
commit
c06093a0a3
@ -1,5 +1,8 @@
|
||||
2000-12-03 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* java/awt/AWTError.java: Extend Error, not
|
||||
IllegalStateException.
|
||||
|
||||
* Makefile.in: Rebuilt.
|
||||
* Makefile.am (awt_java_source_files): Added new file.
|
||||
* java/awt/geom/RoundRectangle2D.java: New file.
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user