public class java.util.concurrent
ExecutionException


Show All Login
Java SE 6
  
Extends: Throwable > Exception
Details
Exception thrown when attempting to retrieve the result of a task that aborted by throwing an exception. This exception can be inspected using the #getCause() method.
since1.5
See also java.util.concurrent.Future

Constructors
protected ExecutionException()
Constructs an ExecutionException with no detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.
protected ExecutionException(String message) Details
Constructs an ExecutionException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.
messagethe detail message
public ExecutionException(String message, Throwable cause) Details
Constructs an ExecutionException with the specified detail message and cause.
messagethe detail message
causethe cause (which is saved for later retrieval by the #getCause() method)
public ExecutionException(Throwable cause) Details
Constructs an ExecutionException with the specified cause. The detail message is set to:
  (cause == null ? null : cause.toString())
(which typically contains the class and detail message of cause).
causethe cause (which is saved for later retrieval by the #getCause() method)