/[classpath]/classpath/java/awt/AWTError.java
ViewVC logotype

Diff of /classpath/java/awt/AWTError.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by mark, Tue Jan 22 22:26:58 2002 UTC revision 1.5 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* AWTError.java -- A serious AWT error occurred.  /* AWTError.java -- A serious AWT error occurred.
2     Copyright (C) 1999 Free Software Foundation, Inc.     Copyright (C) 1999, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 39  exception statement from your version. * Line 39  exception statement from your version. *
39  package java.awt;  package java.awt;
40    
41  /**  /**
42    * This error is thrown when a critical AWT error occurs.   * This error is thrown when a critical Abstract Window Toolkit (AWT) error
43    *   * occurs.
44    * @author Aaron M. Renn (arenn@urbanophile.com)   *
45    */   * @author Aaron M. Renn <arenn@urbanophile.com>
46     * @status updated to 1.4
47     */
48  public class AWTError extends Error  public class AWTError extends Error
49  {  {
50      /**
51  /**     * Compatible with JDK 1.0+.
52    * Initializes a new instance of <code>AWTError</code> with the specified     */
53    * descriptive error message.    private static final long serialVersionUID = -1819846354050686206L;
54    *  
55    * @param message The descriptive error message.    /**
56    */     * Create a new instance with the specified descriptive error message.
57  public     *
58  AWTError(String message)     * @param message the descriptive error message
59  {     */
60    super(message);    public AWTError(String message)
61  }    {
62        super(message);
63  } // class AWTError    }
64    } // class AWTError

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26