home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-20 | 1.0 KB | 40 lines |
- /*
- * @(#)AWTError.java 1.9 98/03/18
- *
- * Copyright 1995-1997 by Sun Microsystems, Inc.,
- * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
- * All rights reserved.
- *
- * This software is the confidential and proprietary information
- * of Sun Microsystems, Inc. ("Confidential Information"). You
- * shall not disclose such Confidential Information and shall use
- * it only in accordance with the terms of the license agreement
- * you entered into with Sun.
- */
-
- package java.awt;
-
- /**
- * Thrown when a serious Abstract Window Toolkit error has occurred.
- *
- * @version 1.9 03/18/98
- * @author Arthur van Hoff
- */
- public class AWTError extends Error {
-
- /*
- * JDK 1.1 serialVersionUID
- */
- private static final long serialVersionUID = -1819846354050686206L;
-
- /**
- * Constructs an instance of <code>AWTError</code> with the specified
- * detail message.
- * @param msg the detail message.
- * @since JDK1.0
- */
- public AWTError(String msg) {
- super(msg);
- }
- }
-