package java.lang;

/**
 * Thrown if the Java Virtual Machine cannot find an appropriate native-language definition of a
 * method declared <code>native</code>.
 */
public class UnsatisfiedLinkError extends LinkageError {

    /**
     * Constructs an <code>UnsatisfiedLinkError</code> with no detail message.
     */
    public UnsatisfiedLinkError() {
        throw new RuntimeException();
    }

    /**
     * Constructs an <code>UnsatisfiedLinkError</code> with the specified detail message.
     *
     * @param s
     *        the detail message.
     */
    public UnsatisfiedLinkError(String s) {
        throw new RuntimeException();
    }
}
