You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
971 B
57 lines
971 B
/*
|
|
* Copyright (c) 1994, 2008, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* Thrown if the Java Virtual Machine cannot find an appropriate
|
|
* native-language definition of a method declared <code>native</code>.
|
|
*
|
|
* @author unascribed
|
|
* @see java.lang.Runtime
|
|
* @since JDK1.0
|
|
*/
|
|
public
|
|
class UnsatisfiedLinkError extends LinkageError {
|
|
private static final long serialVersionUID = -4019343241616879428L;
|
|
|
|
/**
|
|
* Constructs an <code>UnsatisfiedLinkError</code> with no detail message.
|
|
*/
|
|
public UnsatisfiedLinkError() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs an <code>UnsatisfiedLinkError</code> with the
|
|
* specified detail message.
|
|
*
|
|
* @param s the detail message.
|
|
*/
|
|
public UnsatisfiedLinkError(String s) {
|
|
super(s);
|
|
}
|
|
}
|