Merge git+ssh://davetron5000@repo.or.cz/srv/git/vimdoclet
[vimdoclet.git] / sample / java.util.concurrent.RejectedExecutionException.txt
blob1791daae89f93dcde664b3331f9d4d947efc0b49
1 *java.util.concurrent.RejectedExecutionException* *RejectedExecutionException* E
3 public class RejectedExecutionException
4   extends    |java.lang.RuntimeException|
6 |java.util.concurrent.RejectedExecutionException_Description|
7 |java.util.concurrent.RejectedExecutionException_Fields|
8 |java.util.concurrent.RejectedExecutionException_Constructors|
9 |java.util.concurrent.RejectedExecutionException_Methods|
11 ================================================================================
13 *java.util.concurrent.RejectedExecutionException_Constructors*
14 |java.util.concurrent.RejectedExecutionException()|Constructs a RejectedExecuti
15 |java.util.concurrent.RejectedExecutionException(String)|Constructs a RejectedE
16 |java.util.concurrent.RejectedExecutionException(String,Throwable)|Constructs a
17 |java.util.concurrent.RejectedExecutionException(Throwable)|Constructs a Reject
19 *java.util.concurrent.RejectedExecutionException_Description*
21 Exception thrown by an (|java.util.concurrent.Executor|) when a task cannot be 
22 accepted for execution. 
25 *java.util.concurrent.RejectedExecutionException()*
27 public RejectedExecutionException()
29 Constructs a RejectedExecutionException with no detail message. The cause is 
30 not initialized, and may subsequently be initialized by a call to 
31 initCause(|java.util.concurrent.RejectedExecutionException|) . 
34 *java.util.concurrent.RejectedExecutionException(String)*
36 public RejectedExecutionException(java.lang.String message)
38 Constructs a RejectedExecutionException with the specified detail message. The 
39 cause is not initialized, and may subsequently be initialized by a call to 
40 initCause(|java.util.concurrent.RejectedExecutionException|) . 
42     message - the detail message 
44 *java.util.concurrent.RejectedExecutionException(String,Throwable)*
46 public RejectedExecutionException(
47   java.lang.String message,
48   java.lang.Throwable cause)
50 Constructs a RejectedExecutionException with the specified detail message and 
51 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.RejectedExecutionException(Throwable)*
59 public RejectedExecutionException(java.lang.Throwable cause)
61 Constructs a RejectedExecutionException with the specified cause. The detail 
62 message is set to: (cause == null ? null : cause.toString()) (which typically 
63 contains the class and detail message of cause). 
65     cause - the cause (which is saved for later retrieval by the {@link #getCause()} 
66        method)