FileDocCategorySizeDatePackage
LinkageError.javaAPI DocJava SE 5 API871Fri Aug 26 14:57:02 BST 2005java.lang

LinkageError

public 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.
author
Frank Yellin
version
1.13, 12/19/03
since
JDK1.0

Fields Summary
Constructors Summary
public LinkageError()
Constructs a LinkageError with no detail message.

	super();
    
public LinkageError(String s)
Constructs a LinkageError with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary