edu.emory.mathcs.backport.java.util.concurrent
public class ExecutionException extends Exception
Since: 1.5
See Also: Future
Constructor Summary | |
---|---|
protected | ExecutionException()
Constructs an ExecutionException with no detail message.
|
protected | ExecutionException(String message)
Constructs an ExecutionException with the specified detail
message. |
ExecutionException(String message, Throwable cause)
Constructs an ExecutionException with the specified detail
message and cause.
| |
ExecutionException(Throwable cause)
Constructs an ExecutionException 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 ExecutionException 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 ExecutionException method)