java.lang

Class NoSuchMethodError

public class NoSuchMethodError extends IncompatibleClassChangeError

A NoSuchMethodError is thrown if an application attempts to access a method of a class, and that class no longer has that method. This is normally detected by the compiler, so it signals that you are using binary incompatible class versions.

UNKNOWN: updated to 1.4

Constructor Summary
NoSuchMethodError()
Create an error without a message.
NoSuchMethodError(String s)
Create an error with a message.

Constructor Detail

NoSuchMethodError

public NoSuchMethodError()
Create an error without a message.

NoSuchMethodError

public NoSuchMethodError(String s)
Create an error with a message.

Parameters: s the message