KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > AWTException


1 /*
2  * @(#)AWTException.java 1.16 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package java.awt;
8
9
10 /**
11  * Signals that an Absract Window Toolkit exception has occurred.
12  *
13  * @version 1.16 12/19/03
14  * @author Arthur van Hoff
15  */

16 public class AWTException extends Exception JavaDoc {
17  
18     /*
19      * JDK 1.1 serialVersionUID
20      */

21      private static final long serialVersionUID = -1900414231151323879L;
22
23     /**
24      * Constructs an instance of <code>AWTException</code> with the
25      * specified detail message. A detail message is an
26      * instance of <code>String</code> that describes this particular
27      * exception.
28      * @param msg the detail message
29      * @since JDK1.0
30      */

31     public AWTException(String JavaDoc msg) {
32     super(msg);
33     }
34 }
35
Popular Tags