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