public class java.lang
NoSuchFieldError


Show All Login
Java SE 6
  
Extends: Throwable > Error > LinkageError > IncompatibleClassChangeError
Details
Thrown if an 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 run time if the definition of a class has incompatibly changed.
version1.13, 11/17/05
sinceJDK1.0


Constructors
public NoSuchFieldError()
Constructs a NoSuchFieldException with no detail message.
public NoSuchFieldError(String s) Details
Constructs a NoSuchFieldException with the specified detail message.
sthe detail message.