NoSuchFieldExceptionpublic class NoSuchFieldException extends Exception Thrown when the virtual machine notices that a program tries to reference,
on a class or object, a field that does not exist. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public NoSuchFieldException()Constructs a new {@code NoSuchFieldException} that includes the current
stack trace.
super();
| public NoSuchFieldException(String detailMessage)Constructs a new {@code NoSuchFieldException} with the current stack
trace and the specified detail message.
super(detailMessage);
|
|