Improved build.xml
[vimdoclet.git] / sample / java.lang.InstantiationError.txt
blob63ffe45cea207aaec0b7a864c172a0b2f6300baf
1 *java.lang.InstantiationError* *InstantiationError* Thrown when an application t
3 public class InstantiationError
4   extends    |java.lang.IncompatibleClassChangeError|
6 |java.lang.InstantiationError_Description|
7 |java.lang.InstantiationError_Fields|
8 |java.lang.InstantiationError_Constructors|
9 |java.lang.InstantiationError_Methods|
11 ================================================================================
13 *java.lang.InstantiationError_Constructors*
14 |java.lang.InstantiationError()|Constructs an InstantiationError with no detail
15 |java.lang.InstantiationError(String)|Constructs an InstantiationError with the
17 *java.lang.InstantiationError_Description*
19 Thrown when an application tries to use the Java new construct to instantiate 
20 an abstract class or an interface. 
22 Normally, this error is caught by the compiler; this error can only occur at 
23 run time if the definition of a class has incompatibly changed. 
26 *java.lang.InstantiationError()*
28 public InstantiationError()
30 Constructs an InstantiationError with no detail message. 
33 *java.lang.InstantiationError(String)*
35 public InstantiationError(java.lang.String s)
37 Constructs an InstantiationError with the specified detail message. 
39     s - the detail message.