Improved build.xml
[vimdoclet.git] / sample / java.lang.AbstractMethodError.txt
blobb86e241fabefd15e9e59d3282ee81a7eca37981e
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. 
25 *java.lang.AbstractMethodError()*
27 public AbstractMethodError()
29 Constructs an AbstractMethodError with no detail message. 
32 *java.lang.AbstractMethodError(String)*
34 public AbstractMethodError(java.lang.String s)
36 Constructs an AbstractMethodError with the specified detail message. 
38     s - the detail message.