java.lang
Class NoSuchFieldError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--java.lang.LinkageError
                    |
                    +--java.lang.IncompatibleClassChangeError
                          |
                          +--java.lang.NoSuchFieldError
All Implemented Interfaces:
Serializable

public class NoSuchFieldError
extends IncompatibleClassChangeError

Untamed: Thrown if an application tries to access or modify a specified field of an object, and that object no longer has that field.

Normally, this error is caught by the compiler; this error can only occur at run time if the definition of a class has incompatibly changed.

Since:
JDK1.0
Version:
1.10, 12/03/01
Author:
unascribed
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Error
serialVersionUID
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
NoSuchFieldError()
          Enabled: Constructs a NoSuchFieldException with no detail message.
NoSuchFieldError(String s)
          Enabled: Constructs a NoSuchFieldException 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

NoSuchFieldError

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


NoSuchFieldError

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

Parameters:
s - the detail message.


comments?