Merge git+ssh://davetron5000@repo.or.cz/srv/git/vimdoclet
[vimdoclet.git] / sample / java.lang.OutOfMemoryError.txt
blob9b904d79889ea4e0866b90477652b1b407a95099
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. 
24 *java.lang.OutOfMemoryError()*
26 public OutOfMemoryError()
28 Constructs an OutOfMemoryError with no detail message. 
31 *java.lang.OutOfMemoryError(String)*
33 public OutOfMemoryError(java.lang.String s)
35 Constructs an OutOfMemoryError with the specified detail message. 
37     s - the detail message.