Merge git+ssh://davetron5000@repo.or.cz/srv/git/vimdoclet
[vimdoclet.git] / sample / java.util.concurrent.ExecutionException.txt
blob6528a148e7a3906ef2605fcd98fb3229b1d77770
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 a ExecutionException with
15 |java.util.concurrent.ExecutionException(String)|Constructs a ExecutionExceptio
16 |java.util.concurrent.ExecutionException(String,Throwable)|Constructs a Executi
17 |java.util.concurrent.ExecutionException(Throwable)|Constructs a ExecutionExcep
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. 
26 *java.util.concurrent.ExecutionException()*
28 protected ExecutionException()
30 Constructs a ExecutionException with no detail message. The cause is not 
31 initialized, and may subsequently be initialized by a call to 
32 initCause(|java.util.concurrent.ExecutionException|) . 
35 *java.util.concurrent.ExecutionException(String)*
37 protected ExecutionException(java.lang.String message)
39 Constructs a ExecutionException with the specified detail message. The cause is 
40 not initialized, and may subsequently be initialized by a call to 
41 initCause(|java.util.concurrent.ExecutionException|) . 
43     message - the detail message 
45 *java.util.concurrent.ExecutionException(String,Throwable)*
47 public ExecutionException(
48   java.lang.String message,
49   java.lang.Throwable cause)
51 Constructs a ExecutionException with the specified detail message and cause. 
53     message - the detail message 
54     cause - the cause (which is saved for later retrieval by the {@link #getCause()} 
55        method) 
57 *java.util.concurrent.ExecutionException(Throwable)*
59 public ExecutionException(java.lang.Throwable cause)
61 Constructs a ExecutionException with the specified cause. The detail message is 
62 set to: 
64 (cause == null ? null : cause.toString()) 
66 (which typically contains the class and detail message of cause). 
68     cause - the cause (which is saved for later retrieval by the {@link #getCause()} 
69        method)