Top Description Fields Constructors
java.lang

public Class LinkageError

extends Error
Class Inheritance
Known Direct Subclasses
java.lang.NoClassDefFoundError, java.lang.UnsatisfiedLinkError, java.lang.VerifyError, java.lang.BootstrapMethodError, java.lang.ClassCircularityError, java.lang.ClassFormatError, java.lang.ExceptionInInitializerError, java.lang.IncompatibleClassChangeError

Subclasses of 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
1.0

Field Summary

Modifier and TypeField and Description
private static final long

Constructor Summary

AccessConstructor and Description
public
LinkageError()

Constructs a LinkageError with no detail message.

public
LinkageError(String
the detail message.
s
)

Constructs a LinkageError with the specified detail message.

public
LinkageError(String
the detail message.
s
,
Throwable
the cause, may be null
cause
)

Constructs a LinkageError with the specified detail message and cause.

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.lang.Error.serialVersionUID.

Annotations
@Serial

Constructor Detail

LinkageErrorback to summary
public LinkageError()

Constructs a LinkageError with no detail message.

LinkageErrorback to summary
public LinkageError(String s)

Constructs a LinkageError with the specified detail message.

Parameters
s:String

the detail message.

LinkageErrorback to summary
public LinkageError(String s, Throwable cause)

Constructs a LinkageError with the specified detail message and cause.

Parameters
s:String

the detail message.

cause:Throwable

the cause, may be null

Since
1.7