java.lang
Class AbstractMethodError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--java.lang.LinkageError
                    |
                    +--java.lang.IncompatibleClassChangeError
                          |
                          +--java.lang.AbstractMethodError

public class AbstractMethodError
extends IncompatibleClassChangeError

Signals an attempt to call an abstract method.


Constructor Summary
AbstractMethodError()
          Constructs an AbstractMethodError with no detail message.
AbstractMethodError(String s)
          Constructs an AbstractMethodError with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, 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()
Constructs an AbstractMethodError with no detail message. A detail message is a String that describes this particular exception.


AbstractMethodError

public AbstractMethodError(String s)
Constructs an AbstractMethodError with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
s - the String that contains the detail message