1 25 package org.ofbiz.webapp.event; 26 27 34 public class EventHandlerException extends org.ofbiz.base.util.GeneralException { 35 36 public EventHandlerException(String str, Throwable t) { 37 super(str, t); 38 } 39 40 public EventHandlerException(Throwable t) { 41 super(t); 42 } 43 44 public EventHandlerException(String str) { 45 super(str); 46 } 47 48 public EventHandlerException() { 49 super(); 50 } 51 } 52 53 | Popular Tags |