Class LinkageError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.LinkageError
- Direct Known Subclasses:
IncompatibleClassChangeError
LinkageError is the superclass of all error classes that occur when
loading and linking class files.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newLinkageErrorthat includes the current stack trace.LinkageError(String detailMessage) Constructs a newLinkageErrorwith the current stack trace and the specified detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LinkageError
public LinkageError()Constructs a newLinkageErrorthat includes the current stack trace. -
LinkageError
Constructs a newLinkageErrorwith the current stack trace and the specified detail message.- Parameters:
detailMessage- the detail message for this error.
-