1 17 18 19 20 package org.apache.lenya.cms.task; 21 22 23 26 public class ExecutionException extends Exception { 27 28 public ExecutionException() { 29 } 30 31 35 public ExecutionException(String message) { 36 super(message); 37 } 38 39 44 public ExecutionException(String message, Throwable cause) { 45 super(message, cause); 46 } 47 48 52 public ExecutionException(Throwable cause) { 53 super(cause); 54 } 55 } 56 | Popular Tags |