java.lang
Class NoSuchFieldException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.NoSuchFieldException
All Implemented Interfaces:
Serializable

public class NoSuchFieldException
extends Exception

Untamed: Signals that the class doesn't have a field of a specified name.

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

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

NoSuchFieldException

public NoSuchFieldException()
Enabled: Constructor.


NoSuchFieldException

public NoSuchFieldException(String s)
Enabled: Constructor with a detail message.

Parameters:
s - the detail message


comments?