1 /*2 * @(#)AWTException.java 1.16 03/12/193 *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/0314 * @author Arthur van Hoff15 */16 public class AWTException extends Exception {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 particular27 * exception. 28 * @param msg the detail message29 * @since JDK1.030 */31 public AWTException(String msg) {32 super(msg);33 }34 }35