java.lang
Class NoSuchFieldError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.lang.LinkageError
              extended by java.lang.IncompatibleClassChangeError
                  extended by java.lang.NoSuchFieldError

public class NoSuchFieldError
extends IncompatibleClassChangeError

A NoSuchFieldError is thrown if an application attempts to access a field of a class, and that class no longer has that field. This is normally detected by the compiler, so it signals that you are using binary incompatible class versions.


Constructor Summary
NoSuchFieldError()
          Create an error without a message.
NoSuchFieldError(String s)
          Create an error with a message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
getCause, getLocalizedMessage, getMessage, initCause, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoSuchFieldError

public NoSuchFieldError()
Create an error without a message.


NoSuchFieldError

public NoSuchFieldError(String s)
Create an error with a message.

Parameters:
s - the message