java.lang
Class NoSuchFieldError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--java.lang.LinkageError
                    |
                    +--java.lang.IncompatibleClassChangeError
                          |
                          +--java.lang.NoSuchFieldError

public class NoSuchFieldError
extends IncompatibleClassChangeError

Signals that a particular field could not be found.


Constructor Summary
NoSuchFieldError()
          Constructs a NoSuchFieldException without a detail message.
NoSuchFieldError(String s)
          Constructs a NoSuchFieldException with a detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, 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()
Constructs a NoSuchFieldException without a detail message. A detail message is a String that describes this particular exception.


NoSuchFieldError

public NoSuchFieldError(String s)
Constructs a NoSuchFieldException with a detail message. A detail message is a String that describes this particular exception.

Parameters:
s - the detail message