fixed some formatting typos
[vimdoclet.git] / sample / java.lang.OutOfMemoryError.txt
blob3e7113cd85a1f080c382501eedc0270e1faf7434
1 *java.lang.OutOfMemoryError* *OutOfMemoryError* Thrown when the Java Virtual Mac
3 public class OutOfMemoryError
4   extends    |java.lang.VirtualMachineError|
6 |java.lang.OutOfMemoryError_Description|
7 |java.lang.OutOfMemoryError_Fields|
8 |java.lang.OutOfMemoryError_Constructors|
9 |java.lang.OutOfMemoryError_Methods|
11 ================================================================================
13 *java.lang.OutOfMemoryError_Constructors*
14 |java.lang.OutOfMemoryError()|Constructs an OutOfMemoryError with no detail mes
15 |java.lang.OutOfMemoryError(String)|Constructs an OutOfMemoryError with the spe
17 *java.lang.OutOfMemoryError_Description*
19 Thrown when the Java Virtual Machine cannot allocate an object because it is 
20 out of memory, and no more memory could be made available by the garbage 
21 collector. 
25 *java.lang.OutOfMemoryError()*
27 public OutOfMemoryError()
29 Constructs an OutOfMemoryError with no detail message. 
32 *java.lang.OutOfMemoryError(String)*
34 public OutOfMemoryError(java.lang.String s)
36 Constructs an OutOfMemoryError with the specified detail message. 
38     s - the detail message.