NoSuchFieldErrorNameNoSuchFieldErrorSynopsis
DescriptionA NoSuchFieldError is thrown in response to an attempt to reference an instance or class variable that is not defined in the current definition of a class. Usually this error is caught by the compiler; it can occur at run-time if the definition of a class is changed after the class that references it was last compiled. Class Summary
public class java.lang.NoSuchFieldError extends java.lang.IncompatibleClassChangeError { // Constructors public NoSuchFieldError(); public NoSuchFieldError(String s); } ConstructorsNoSuchFieldErrorpublic NoSuchFieldError()
public NoSuchFieldError(String s)
Inherited Methods
See AlsoError, IncompatibleClassChangeError, Throwable |
|