fixed some formatting typos
[vimdoclet.git] / sample / java.util.concurrent.ExecutionException.txt
blob5d51be4d793f128bc65235b4e6b429adcdfb647a
1 *java.util.concurrent.ExecutionException* *ExecutionException* Exception thrown 
3 public class ExecutionException
4   extends    |java.lang.Exception|
6 |java.util.concurrent.ExecutionException_Description|
7 |java.util.concurrent.ExecutionException_Fields|
8 |java.util.concurrent.ExecutionException_Constructors|
9 |java.util.concurrent.ExecutionException_Methods|
11 ================================================================================
13 *java.util.concurrent.ExecutionException_Constructors*
14 |java.util.concurrent.ExecutionException()|Constructs an ExecutionException wit
15 |java.util.concurrent.ExecutionException(String)|Constructs an ExecutionExcepti
16 |java.util.concurrent.ExecutionException(String,Throwable)|Constructs an Execut
17 |java.util.concurrent.ExecutionException(Throwable)|Constructs an ExecutionExce
19 *java.util.concurrent.ExecutionException_Description*
21 Exception thrown when attempting to retrieve the result of a task that aborted 
22 by throwing an exception. This exception can be inspected using the 
23 (|java.util.concurrent.ExecutionException|) method. 
27 *java.util.concurrent.ExecutionException()*
29 protected ExecutionException()
31 Constructs an ExecutionException with no detail message. The cause is not 
32 initialized, and may subsequently be initialized by a call to 
33 initCause(|java.util.concurrent.ExecutionException|) . 
36 *java.util.concurrent.ExecutionException(String)*
38 protected ExecutionException(java.lang.String message)
40 Constructs an ExecutionException with the specified detail message. The cause 
41 is not initialized, and may subsequently be initialized by a call to 
42 initCause(|java.util.concurrent.ExecutionException|) . 
44     message - the detail message 
46 *java.util.concurrent.ExecutionException(String,Throwable)*
48 public ExecutionException(
49   java.lang.String message,
50   java.lang.Throwable cause)
52 Constructs an ExecutionException with the specified detail message and cause. 
54     message - the detail message 
55     cause - the cause (which is saved for later retrieval by the {@link #getCause()} 
56        method) 
58 *java.util.concurrent.ExecutionException(Throwable)*
60 public ExecutionException(java.lang.Throwable cause)
62 Constructs an ExecutionException with the specified cause. The detail message 
63 is set to: 
65 (cause == null ? null : cause.toString()) 
67 (which typically contains the class and detail message of cause). 
69     cause - the cause (which is saved for later retrieval by the {@link #getCause()} 
70        method)