1 7 8 package java.util.concurrent; 9 10 17 public class RejectedExecutionException extends RuntimeException { 18 private static final long serialVersionUID = -375805702767069545L; 19 20 25 public RejectedExecutionException() { } 26 27 35 public RejectedExecutionException(String message) { 36 super(message); 37 } 38 39 47 public RejectedExecutionException(String message, Throwable cause) { 48 super(message, cause); 49 } 50 51 60 public RejectedExecutionException(Throwable cause) { 61 super(cause); 62 } 63 } 64 | Popular Tags |