LinkageErrorpublic class LinkageError extends Error 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. |
Constructors Summary |
---|
public LinkageError()Constructs a LinkageError with no detail message.
super();
| public LinkageError(String s)Constructs a LinkageError with the specified detail
message.
super(s);
|
|