Class java.lang.AbstractMethodError
All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.AbstractMethodError
Object
|
+----Throwable
|
+----Error
|
+----LinkageError
|
+----IncompatibleClassChangeError
|
+----java.lang.AbstractMethodError
- public class AbstractMethodError
- extends IncompatibleClassChangeError
Thrown when an application tries to call an abstract method.
Normally, this error is caught by the compiler; this error can
only occur at run time if the definition of some class has
incompatibly changed since the currently executing method was last
compiled.
- Version:
- 1.11, 07/01/98
- Author:
- unascribed
- Since:
- JDK1.0
-
java.lang.AbstractMethodError()
- Constructs an
AbstractMethodError
with no detail message.
-
java.lang.AbstractMethodError(String)
- Constructs an
AbstractMethodError
with the specified
detail message.
AbstractMethodError
public AbstractMethodError()
- Constructs an
AbstractMethodError
with no detail message.
- Since:
- JDK1.0
AbstractMethodError
public AbstractMethodError(String s)
- Constructs an
AbstractMethodError
with the specified
detail message.
- Parameters:
- s - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index