FileDocCategorySizeDatePackage
UnsatisfiedLinkError.javaAPI DocAndroid 1.5 API1664Wed May 06 22:41:04 BST 2009java.lang

UnsatisfiedLinkError

public class UnsatisfiedLinkError extends LinkageError
Thrown when an attempt is made to invoke a native for which an implementation could not be found.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public UnsatisfiedLinkError()
Constructs a new {@code UnsatisfiedLinkError} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public UnsatisfiedLinkError(String detailMessage)
Constructs a new {@code UnsatisfiedLinkError} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary