1 /*2 * @(#)UnsatisfiedLinkError.java 1.21 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 if the Java Virtual Machine cannot find an appropriate 12 * native-language definition of a method declared <code>native</code>. 13 *14 * @author unascribed15 * @version 1.21, 12/19/0316 * @see java.lang.Runtime17 * @since JDK1.018 */19 public20 class UnsatisfiedLinkError extends LinkageError {21 /**22 * Constructs an <code>UnsatisfiedLinkError</code> with no detail message.23 */24 public UnsatisfiedLinkError() {25 super();26 }27 28 /**29 * Constructs an <code>UnsatisfiedLinkError</code> with the 30 * specified detail message. 31 *32 * @param s the detail message.33 */34 public UnsatisfiedLinkError(String s) {35 super(s);36 }37 }38