1 /*2 * @(#)AWTError.java 1.15 03/12/193 *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/0314 * @author Arthur van Hoff15 */16 public class AWTError extends Error {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.028 */29 public AWTError(String msg) {30 super(msg);31 }32 }33