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