1 20 package org.enhydra.barracuda.core.event; 21 22 import java.io.*; 23 import java.util.*; 24 25 import org.enhydra.barracuda.plankton.exceptions.NestableException; 26 27 32 public class EventException extends NestableException { 33 34 37 public EventException () {super();} 38 39 44 public EventException (String s) {super(s, null);} 45 46 52 public EventException (String s, Exception ibaseException) {super(s, ibaseException);} 53 54 } 55 | Popular Tags |