1 18 19 package alt.jiapi.event; 20 21 import java.util.EventObject ; 22 23 31 public class ExceptionEvent extends JiapiEvent { 32 35 public static final int CATCH_TRAPPED = 1; 37 47 public ExceptionEvent(ExceptionEventProducer eep, Object sourceObject, 48 String exceptionName, int id) { 49 super(eep, sourceObject, exceptionName, null, id); 50 } 51 52 64 public ExceptionEvent(ExceptionEventProducer eep, Object sourceObject, 65 String exceptionName, Object target, 66 int id) { 67 super(eep, sourceObject, exceptionName, target, id); 68 } 69 } 70 71 72 | Popular Tags |