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