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 if the Java Virtual Machine cannot find an appropriate native-language definition of a method declarednative.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsatisfiedLinkError()Constructs anUnsatisfiedLinkErrorwith no detail message.UnsatisfiedLinkError(String s)Constructs anUnsatisfiedLinkErrorwith the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
UnsatisfiedLinkError
public UnsatisfiedLinkError()
Constructs anUnsatisfiedLinkErrorwith no detail message.
-
UnsatisfiedLinkError
public UnsatisfiedLinkError(String s)
Constructs anUnsatisfiedLinkErrorwith the specified detail message.- Parameters:
s- the detail message.
-
-