java.lang
Class UnsatisfiedLinkError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.UnsatisfiedLinkError
-
public class UnsatisfiedLinkError extends Error
Thrown when an attempt is made to invoke a native for which an implementation could not be found.
-
-
Constructor Summary
Constructors Constructor and Description UnsatisfiedLinkError()
Constructs a newUnsatisfiedLinkError
that includes the current stack trace.UnsatisfiedLinkError(String detailMessage)
Constructs a newUnsatisfiedLinkError
with the current stack trace and the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, getStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
UnsatisfiedLinkError
public UnsatisfiedLinkError()
Constructs a newUnsatisfiedLinkError
that includes the current stack trace.
-
UnsatisfiedLinkError
public UnsatisfiedLinkError(String detailMessage)
Constructs a newUnsatisfiedLinkError
with the current stack trace and the specified detail message.- Parameters:
detailMessage
- the detail message for this exception.
-
-