View Javadoc

1   package org.weda.workflow;
2   
3   public class WorkflowException extends EntryException {
4       public WorkflowException(String message){
5           super(message);
6       }
7       public WorkflowException(String message, Throwable cause){
8           super(message, cause);
9       }
10  }