1 *java.lang.AbstractMethodError* *AbstractMethodError* Thrown when an application
3 public class AbstractMethodError
4 extends |java.lang.IncompatibleClassChangeError|
6 |java.lang.AbstractMethodError_Description|
7 |java.lang.AbstractMethodError_Fields|
8 |java.lang.AbstractMethodError_Constructors|
9 |java.lang.AbstractMethodError_Methods|
11 ================================================================================
13 *java.lang.AbstractMethodError_Constructors*
14 |java.lang.AbstractMethodError()|Constructs an AbstractMethodError with no deta
15 |java.lang.AbstractMethodError(String)|Constructs an AbstractMethodError with t
17 *java.lang.AbstractMethodError_Description*
19 Thrown when an application tries to call an abstract method. Normally, this
20 error is caught by the compiler; this error can only occur at run time if the
21 definition of some class has incompatibly changed since the currently executing
22 method was last compiled.
26 *java.lang.AbstractMethodError()*
28 public AbstractMethodError()
30 Constructs an AbstractMethodError with no detail message.
33 *java.lang.AbstractMethodError(String)*
35 public AbstractMethodError(java.lang.String s)
37 Constructs an AbstractMethodError with the specified detail message.
39 s - the detail message.