KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > AWTError


1 /*
2  * @(#)AWTError.java 1.15 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
8 package java.awt;
9
10 /**
11  * Thrown when a serious Abstract Window Toolkit error has occurred.
12  *
13  * @version 1.15 12/19/03
14  * @author Arthur van Hoff
15  */

16 public class AWTError extends Error JavaDoc {
17
18     /*
19      * JDK 1.1 serialVersionUID
20      */

21      private static final long serialVersionUID = -1819846354050686206L;
22
23     /**
24      * Constructs an instance of <code>AWTError</code> with the specified
25      * detail message.
26      * @param msg the detail message.
27      * @since JDK1.0
28      */

29     public AWTError(String JavaDoc msg) {
30     super(msg);
31     }
32 }
33
Popular Tags