restructuring
[lwes-java.git] / src / main / java / org / lwes / EventSystemException.java
blobcb2ceae5c1968b53a093df0fa2148c9d8e713245
1 package org.lwes;
3 /**
4 * This is the parent class of all the Exceptions thrown by the event system
5 *
6 * @author Anthony Molinaro
7 */
8 public class EventSystemException extends Exception {
9 /**
10 * Overrides <tt>Exception</tt> constructor
11 * @param e the parent exception
13 public EventSystemException(Throwable e) {
14 super(e);
17 /**
18 * Overrides <tt>Exception</tt> constructor
19 * @param s the exception message
21 public EventSystemException(String s) {
22 super(s);
25 /**
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) {
31 super(s, e);