View Javadoc

1   /* $Id: EmailListenerException.java,v 1.1 2004/03/17 21:17:13 johndavidtaylor Exp $
2    * Created on Mar 14, 2004 by jdt
3    * The alipes project
4    * (c) 2004 
5    *
6    */
7   package org.abraracourcix.alipes.listeners.email;
8   
9   import org.abraracourcix.alipes.listeners.ListenerException;
10  
11  /***
12   * Yet another exception.  Might have made a rod for my own back by making ListenerException
13   * abstract
14   * 
15   * @author jdt
16   */
17  public class EmailListenerException extends ListenerException {
18      /***
19       * Constructor
20       * 
21       */
22      public EmailListenerException() {
23          super();
24      }
25      /***
26       * Constructor
27       * @param arg0 description
28       */
29      public EmailListenerException(final String arg0) {
30          super(arg0);
31      }
32      /***
33       * Constructor
34       * @param arg0 cause
35       */
36      public EmailListenerException(final Throwable arg0) {
37          super(arg0);
38      }
39      /***
40       * Constructor
41       * @param arg0 description
42       * @param arg1 cause
43       */
44      public EmailListenerException(final String arg0, final Throwable arg1) {
45          super(arg0, arg1);
46      }
47  }
48  
49  
50  /*
51   *  $Log: EmailListenerException.java,v $
52   *  Revision 1.1  2004/03/17 21:17:13  johndavidtaylor
53   *  Copied across from incubation in beanpeeler
54   *
55   *  Revision 1.1  2004/03/14 16:26:49  johndavidtaylor
56   *  refactored email
57   *
58   */