java.lang
Class NoSuchMethodError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.lang.LinkageError
              extended by java.lang.IncompatibleClassChangeError
                  extended by java.lang.NoSuchMethodError
All Implemented Interfaces:
Serializable

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.

See Also:
Serialized Form

Constructor Summary
NoSuchMethodError()
          Create an error without a message.
NoSuchMethodError(String s)
          Create an error with a message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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