package org.cagrid.tools.events; /** * @author <A href="mailto:langella@bmi.osu.edu">Stephen Langella </A> * @author <A href="mailto:oster@bmi.osu.edu">Scott Oster </A> * @author <A href="mailto:hastings@bmi.osu.edu">Shannon Hastings </A> * @author <A href="mailto:ervin@bmi.osu.edu">David Ervin</A> */ public class EventHandlingException extends Exception { public EventHandlingException() { // TODO Auto-generated constructor stub } public EventHandlingException(String message) { super(message); // TODO Auto-generated constructor stub } public EventHandlingException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public EventHandlingException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }