Packages This Package Prev Next Index
public class java.lang.NoSuchFieldError
    extends java.lang.IncompatibleClassChangeError (§1.48)
{
    public NoSuchFieldError();	§1.53.1
    public NoSuchFieldError(String s);	§1.53.2
}
The Java runtime throws an instance of this class if the 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 runtime if the definition of a class has incompatibably changed.
public NoSuchFieldError()
NoSuchFieldException with no detail message. 
public NoSuchFieldError(String s)
NoSuchFieldException with the specified detail 
message. 
s
- 
Packages This Package Prev Next IndexJava API Document (HTML generated by dkramer on April 22, 1996)