public class java.lang
UnsatisfiedLinkError


Show All Login
Java SE 6
  
Extends: Throwable > Error > LinkageError
Details
Thrown if the Java Virtual Machine cannot find an appropriate native-language definition of a method declared native.
version1.22, 11/17/05
sinceJDK1.0
See also java.lang.Runtime
common noteMon Dec 07 04:49:22 PST 2009
UnsatisfiedLinkError is thrown when (1) attempting to call a native method that has not been loaded or (2) when loadLibrary or load method in Runtime or System is called for a file that cannot be found. (Any other cases?)

Constructors
public UnsatisfiedLinkError()
Constructs an UnsatisfiedLinkError with no detail message.
public UnsatisfiedLinkError(String s) Details
Constructs an UnsatisfiedLinkError with the specified detail message.
sthe detail message.