java.lang
Class AbstractMethodError

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.AbstractMethodError

public class AbstractMethodError
extends IncompatibleClassChangeError

An AbstractMethodError is thrown when an application attempts to access an abstract method. Compilers typically detect this error, but it can be thrown at run time if the definition of a class has changed since the application was last compiled. This can also occur when reflecting on methods.


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

Constructor Detail

AbstractMethodError

public AbstractMethodError()
Create an error without a message.


AbstractMethodError

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

Parameters:
s - the message