Package java.lang |
![]() Previous |
![]() Java API |
![]() Index |
![]() Next |
public class java.lang.LinkageError extends java.lang.Error { // Constructors public LinkageError(); public LinkageError(String s); }
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.
public LinkageError()Constructs a LinkageError with no detail message.
public LinkageError(String s)Constructs a LinkageError with the specified detail message.
Parameter Description s the detail message
© 1996 Sun Microsystems, Inc. All rights reserved.