Improved build.xml
[vimdoclet.git] / sample / java.lang.NoClassDefFoundError.txt
blobc40a1c7842e7d096afb9cac4e3297c98b855745d
1 *java.lang.NoClassDefFoundError* *NoClassDefFoundError* Thrown if the Java Virtu
3 public class NoClassDefFoundError
4   extends    |java.lang.LinkageError|
6 |java.lang.NoClassDefFoundError_Description|
7 |java.lang.NoClassDefFoundError_Fields|
8 |java.lang.NoClassDefFoundError_Constructors|
9 |java.lang.NoClassDefFoundError_Methods|
11 ================================================================================
13 *java.lang.NoClassDefFoundError_Constructors*
14 |java.lang.NoClassDefFoundError()|Constructs a NoClassDefFoundError with no det
15 |java.lang.NoClassDefFoundError(String)|Constructs a NoClassDefFoundError with 
17 *java.lang.NoClassDefFoundError_Description*
19 Thrown if the Java Virtual Machine or a ClassLoader instance tries to load in 
20 the definition of a class (as part of a normal method call or as part of 
21 creating a new instance using the new expression) and no definition of the 
22 class could be found. 
24 The searched-for class definition existed when the currently executing class 
25 was compiled, but the definition can no longer be found. 
28 *java.lang.NoClassDefFoundError()*
30 public NoClassDefFoundError()
32 Constructs a NoClassDefFoundError with no detail message. 
35 *java.lang.NoClassDefFoundError(String)*
37 public NoClassDefFoundError(java.lang.String s)
39 Constructs a NoClassDefFoundError with the specified detail message. 
41     s - the detail message.