View Javadoc

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