public class

UnsatisfiedLinkError

extends LinkageError
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.lang.LinkageError
         ↳ java.lang.UnsatisfiedLinkError

Class Overview

Thrown if the Java Virtual Machine cannot find an appropriate native-language definition of a method declared native.

See Also

Summary

Public Constructors
UnsatisfiedLinkError()
Constructs an UnsatisfiedLinkError with no detail message.
UnsatisfiedLinkError(String s)
Constructs an UnsatisfiedLinkError with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public UnsatisfiedLinkError ()

Constructs an UnsatisfiedLinkError with no detail message.

public UnsatisfiedLinkError (String s)

Constructs an UnsatisfiedLinkError with the specified detail message.

Parameters
s the detail message.