1 20 package org.enhydra.barracuda.core.event; 21 22 27 public class InterruptDispatchException extends EventException { 28 private BaseEvent newEvent = null; 29 30 35 public InterruptDispatchException (BaseEvent inewEvent) { 36 this(null, inewEvent); 37 } 38 39 45 public InterruptDispatchException (String s, BaseEvent inewEvent) { 46 this(s, inewEvent, null); 47 } 48 49 56 public InterruptDispatchException (String s, BaseEvent inewEvent, Exception ibaseException) { 57 super(s, ibaseException); 58 newEvent = inewEvent; 59 } 60 61 66 public BaseEvent getNewEvent() { 67 return newEvent; 68 } 69 } 70 | Popular Tags |