FileDocCategorySizeDatePackage
AbstractMethodError.javaAPI DocAndroid 1.5 API1789Wed May 06 22:41:04 BST 2009java.lang

AbstractMethodError

public class AbstractMethodError extends IncompatibleClassChangeError
Thrown by the virtual machine when an abstract method is called.

Note that this can only occur when inconsistent class files have been loaded, since invoking an abstract method is a compile time error.

since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public AbstractMethodError()
Constructs a new {@code AbstractMethodError} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public AbstractMethodError(String detailMessage)
Constructs a new {@code AbstractMethodError} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this error.
since
Android 1.0

        super(detailMessage);
    
Methods Summary