Class java.lang.LinkageError
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.LinkageError

Object
   |
   +----Throwable
           |
           +----Error
                   |
                   +----java.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.

Version:
1.6, 07/01/98
Author:
Frank Yellin
Since:
JDK1.0

Constructor Index

 o java.lang.LinkageError()
Constructs a LinkageError with no detail message.
 o java.lang.LinkageError(String)
Constructs a LinkageError with the specified detail message.

Constructors

 o LinkageError
public LinkageError()
Constructs a LinkageError with no detail message.

Since:
JDK1.0
 o LinkageError
public LinkageError(String s)
Constructs a LinkageError with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index