java.lang
public class: LinkageError [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.LinkageError
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ClassFormatError, GenericSignatureFormatError, UnsupportedClassVersionError, AbstractMethodError, NoSuchFieldError, InstantiationError, IncompatibleClassChangeError, BootstrapMethodError, NoSuchMethodError, VerifyError, UnsatisfiedLinkError, NoClassDefFoundError, ExceptionInInitializerError, ClassCircularityError, IllegalAccessError
Subclasses of {@code LinkageError} indicate that a class has
some dependency on another class; however, the latter class has
incompatibly changed after the compilation of the former class.
- author:
Frank
- Yellin
- since:
JDK1.0
-
Constructor: |
public LinkageError() {
super();
}
Constructs a {@code LinkageError} with no detail message. |
public LinkageError(String s) {
super(s);
}
Constructs a {@code LinkageError} with the specified detail
message. Parameters:
s - the detail message.
|
public LinkageError(String s,
Throwable cause) {
super(s, cause);
}
Constructs a {@code LinkageError} with the specified detail
message and cause. Parameters:
s - the detail message.
cause - the cause, may be {@code null}
- since:
1.7 -
|
Methods from java.lang.Throwable: |
---|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getStackTraceDepth, getStackTraceElement, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |