4 * This is the parent class of all the Exceptions thrown by the event system
6 * @author Anthony Molinaro
8 public class EventSystemException
extends Exception
{
10 * Overrides <tt>Exception</tt> constructor
11 * @param e the parent exception
13 public EventSystemException(Throwable e
) {
18 * Overrides <tt>Exception</tt> constructor
19 * @param s the exception message
21 public EventSystemException(String s
) {
26 * Overrides the <tt>Exception</tt> constructor
27 * @param s the exception message
28 * @param e the parent exception
30 public EventSystemException(String s
, Throwable e
) {