restructuring
[lwes-java.git] / src / main / java / org / lwes / NoSuchEventException.java
blobe7dcc2e817ba990b46a4f35ddbe476c327b0676a
1 package org.lwes;
3 /**
4 * Exception thrown when the given event does not exist in the event system
5 * @author Anthony Molinaro
7 */
8 public class NoSuchEventException extends EventSystemException {
9 /**
10 * Overrides <tt>EventSystemException</tt> constructor
12 public NoSuchEventException(String s) {
13 super(s);