UnsatisfiedLinkError (Java SE 17 & JDK 17)
- 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 declared native.
- Since:
- 1.0
- See Also:
-
Constructor Summary
Constructors
Constructs an
UnsatisfiedLinkErrorwith no detail message.Constructs an
UnsatisfiedLinkErrorwith the specified detail message. -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsatisfiedLinkError
public UnsatisfiedLinkError()
Constructs an
UnsatisfiedLinkErrorwith no detail message. -
UnsatisfiedLinkError
public UnsatisfiedLinkError
(String s) Constructs an
UnsatisfiedLinkErrorwith the specified detail message.- Parameters:
s- the detail message.
-