1 /*2 * @(#)UnknownError.java 1.13 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.lang;9 10 /**11 * Thrown when an unknown but serious exception has occurred in the 12 * Java Virtual Machine. 13 *14 * @author unascribed15 * @version 1.13, 12/19/0316 * @since JDK1.017 */18 public19 class UnknownError extends VirtualMachineError {20 /**21 * Constructs an <code>UnknownError</code> with no detail message. 22 */23 public UnknownError() {24 super();25 }26 27 /**28 * Constructs an <code>UnknownError</code> with the specified detail 29 * message. 30 *31 * @param s the detail message.32 */33 public UnknownError(String s) {34 super(s);35 }36 }37