Package java.lang
Class UnsatisfiedLinkError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.LinkageError
-
- java.lang.UnsatisfiedLinkError
-
- All Implemented Interfaces:
Serializable
public class UnsatisfiedLinkError extends LinkageError
Thrown when an attempt is made to invoke a native for which an implementation could not be found.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsatisfiedLinkError()Constructs a newUnsatisfiedLinkErrorthat includes the current stack trace.UnsatisfiedLinkError(String detailMessage)Constructs a newUnsatisfiedLinkErrorwith the current stack trace and the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnsatisfiedLinkError
public UnsatisfiedLinkError()
Constructs a newUnsatisfiedLinkErrorthat includes the current stack trace.
-
UnsatisfiedLinkError
public UnsatisfiedLinkError(String detailMessage)
Constructs a newUnsatisfiedLinkErrorwith the current stack trace and the specified detail message.- Parameters:
detailMessage- the detail message for this exception.
-
-