FileDocCategorySizeDatePackage
UnsatisfiedLinkError.javaAPI DocJava SE 5 API884Fri Aug 26 14:57:04 BST 2005java.lang

UnsatisfiedLinkError

public class UnsatisfiedLinkError extends LinkageError
Thrown if the Java Virtual Machine cannot find an appropriate native-language definition of a method declared native.
author
unascribed
version
1.21, 12/19/03
see
java.lang.Runtime
since
JDK1.0

Fields Summary
Constructors Summary
public UnsatisfiedLinkError()
Constructs an UnsatisfiedLinkError with no detail message.

	super();
    
public UnsatisfiedLinkError(String s)
Constructs an UnsatisfiedLinkError with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary