LinkageErrorpublic class LinkageError extends Error {@code LinkageError} is the superclass of all error classes that occur when
loading and linking class files. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public LinkageError()Constructs a new {@code LinkageError} that includes the current stack
trace.
super();
| public LinkageError(String detailMessage)Constructs a new {@code LinkageError} with the current stack trace and
the specified detail message.
super(detailMessage);
|
|