1 7 8 package java.util.concurrent; 9 10 19 public class ExecutionException extends Exception { 20 private static final long serialVersionUID = 7830266012832686185L; 21 22 27 protected ExecutionException() { } 28 29 36 protected ExecutionException(String message) { 37 super(message); 38 } 39 40 48 public ExecutionException(String message, Throwable cause) { 49 super(message, cause); 50 } 51 52 63 public ExecutionException(Throwable cause) { 64 super(cause); 65 } 66 } 67 | Popular Tags |