edu.emory.mathcs.backport.java.util.concurrent
public class RejectedExecutionException extends RuntimeException
Since: 1.5
Constructor Summary | |
---|---|
RejectedExecutionException()
Constructs a RejectedExecutionException with no detail message.
| |
RejectedExecutionException(String message)
Constructs a RejectedExecutionException with the
specified detail message. | |
RejectedExecutionException(String message, Throwable cause)
Constructs a RejectedExecutionException with the
specified detail message and cause.
| |
RejectedExecutionException(Throwable cause)
Constructs a RejectedExecutionException with the
specified cause. |
initCause
. initCause
.
Parameters: message the detail message
Parameters: message the detail message cause the cause (which is saved for later retrieval by the RejectedExecutionException method)
(cause == null ? null : cause.toString())(which typically contains the class and detail message of cause).
Parameters: cause the cause (which is saved for later retrieval by the RejectedExecutionException method)