1 17 18 19 20 package org.apache.lenya.workflow; 21 22 23 26 public class WorkflowException extends Exception { 27 30 public WorkflowException() { 31 super(); 32 } 33 34 39 public WorkflowException(String message) { 40 super(message); 41 } 42 43 49 public WorkflowException(String message, Throwable cause) { 50 super(message, cause); 51 } 52 53 58 public WorkflowException(Throwable cause) { 59 super(cause); 60 } 61 } 62 | Popular Tags |