Package java.lang |
![]() Previous |
![]() Java API |
![]() Index |
![]() Next |
public class java.lang.AbstractMethodError extends java.lang.IncompatibleClassChangeError { // Constructors public AbstractMethodError(); public AbstractMethodError(String s); }
Thrown when an application tries to call an abstract method. Normally, this error is caught by the compiler; this error can only occur at runtime if the definition of some class has incompatibably changed since the currently executing method was last compiled.
public AbstractMethodError()Constructs an AbstractMethodError with no detail message.
public AbstractMethodError(String s)Constructs an AbstractMethodError with the specified detail message.
Parameter Description s the detail message
© 1996 Sun Microsystems, Inc. All rights reserved.