java.lang
Class NoSuchMethodError
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Error
|
+--java.lang.LinkageError
|
+--java.lang.IncompatibleClassChangeError
|
+--java.lang.NoSuchMethodError
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.
Authors:- Brian Jones
- Tom Tromey <tromey@cygnus.com>
NoSuchMethodError
public NoSuchMethodError()
Create an error without a message.
NoSuchMethodError
public NoSuchMethodError(java.lang.String s)
Create an error with a message.
Parameters:
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.