View Javadoc

1   /* $Id: ListenerException.java,v 1.1 2004/03/17 21:17:13 johndavidtaylor Exp $
2    * Created on Mar 13, 2004 by jdt
3    * The alipes project
4    * (c) 2004 
5    *
6    */
7   package org.abraracourcix.alipes.listeners;
8   
9   /***
10   * Base class for any exceptions that Listeners might throw in their 
11   * eventOccurred method.
12   * @author jdt
13   */
14  public abstract class ListenerException extends Exception {
15      /***
16       * Constructor
17       * 
18       */
19      public ListenerException() {
20          super();
21      }
22      /***
23       * Constructor
24       * @param arg0 description
25       */
26      public ListenerException(final String arg0) {
27          super(arg0);
28      }
29      /***
30       * Constructor
31       * @param arg0 root cause
32       */
33      public ListenerException(final Throwable arg0) {
34          super(arg0);
35      }
36      /***
37       * Constructor
38       * @param arg0 description
39       * @param arg1 root cause
40       */
41      public ListenerException(final String arg0, final Throwable arg1) {
42          super(arg0, arg1);
43      }
44  }
45  
46  
47  /*
48   *  $Log: ListenerException.java,v $
49   *  Revision 1.1  2004/03/17 21:17:13  johndavidtaylor
50   *  Copied across from incubation in beanpeeler
51   *
52   *  Revision 1.1  2004/03/14 00:44:22  johndavidtaylor
53   *  Added ListenerException
54   *
55   */