java.lang
Class LinkageError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--java.lang.LinkageError
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ClassCircularityError, ClassFormatError, ExceptionInInitializerError, IncompatibleClassChangeError, NoClassDefFoundError, UnsatisfiedLinkError, VerifyError

public class LinkageError
extends Error

Untamed: 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.

Since:
JDK1.0
Version:
1.11, 12/03/01
Author:
Frank Yellin
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Error
serialVersionUID
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
LinkageError()
          Enabled: Constructs a LinkageError with no detail message.
LinkageError(String s)
          Enabled: Constructs a LinkageError with the specified detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LinkageError

public LinkageError()
Enabled: Constructs a LinkageError with no detail message.


LinkageError

public LinkageError(String s)
Enabled: Constructs a LinkageError with the specified detail message.

Parameters:
s - the detail message.


comments?