| Package java.lang |
Previous |
Java API |
Index |
Next |
public class java.lang.UnsatisfiedLinkError
extends java.lang.LinkageError
{
// Constructors
public UnsatisfiedLinkError();
public UnsatisfiedLinkError(String s);
}
Thrown if the The Java Virtual Machine cannot find an appropriate native-language definition of a method declared native.
public UnsatisfiedLinkError()Constructs an UnsatisfiedLinkError with no detail message.
public UnsatisfiedLinkError(String s)Constructs an UnsatisfiedLinkError with the specified detail message.
Parameter Description s the detail message
| © 1996 Sun Microsystems, Inc. All rights reserved. |