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

Diff of /classpath/java/awt/AWTException.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  /* AWTException.java -- Generic AWT exception  /* AWTException.java -- Generic AWT exception
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 is a generic exception that indicates an error occurred in the   * This is a generic exception that indicates an exception occurred in the
43    * AWT system.   * Abstract Window Toolkit (AWT) system.
44    *   *
45    * @author Aaron M. Renn (arenn@urbanophile.com)   * @author Aaron M. Renn <arenn@urbanophile.com>
46    */   * @status updated to 1.4
47     */
48  public class AWTException extends Exception  public class AWTException extends Exception
49  {  {
50      /**
51  /**     * Compatible with JDK 1.0+.
52    * Initializes a new instance of <code>AWTException</code> with the     */
53    * specified detailed error message.    private static final long serialVersionUID = -1900414231151323879L;
54    *  
55    * @param message The detailed error message.    /**
56    */     * Create a new instance with the  specified detailed error message.
57  public     *
58  AWTException(String message)     * @param message the detailed error message
59  {     */
60    super(message);    public AWTException(String message)
61  }    {
62        super(message);
63  } // class AWTException    }
64    } // class AWTException

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