Package java.lang Previous
Previous
Java API
Java API
Index
Index
Next
Next

Class LinkageError

Constructors

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.


Constructors


LinkageError

public LinkageError() 

Constructs a LinkageError with no detail message.


LinkageError

public LinkageError(String  s) 

Constructs a LinkageError with the specified detail message.

ParameterDescription
s the detail message



© 1996 Sun Microsystems, Inc. All rights reserved.