View Javadoc

1   /*
2    * $Id: DispatcherException.java,v 1.1 2004/12/15 14:18:10 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
8    */
9   package bexee.core;
10  
11  /***
12   * This class is used to indicate that something went wrong when trying to
13   * dispatch an inbound message to the <code>ProcessController</code>.
14   * 
15   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:10 $
16   * @author Patric Fornasier
17   * @author Pawel Kowalski
18   */
19  public class DispatcherException extends Exception {
20  
21      /***
22       * Create a new <code>DispatcherException</code> with a message string.
23       * 
24       * @param message
25       */
26      public DispatcherException(String message) {
27          super(message);
28      }
29  
30      /***
31       * Create a new <code>DispatcherException</code> with a message string and
32       * a <code>Throwable</code> cause.
33       * 
34       * @param message
35       * @param cause
36       */
37      public DispatcherException(String message, Throwable cause) {
38          super(message, cause);
39      }
40  
41      /***
42       * Create a new <code>DispatcherException</code> with cause
43       * <code>Throwable</code>.
44       * 
45       * @param cause
46       */
47      public DispatcherException(Throwable cause) {
48          super(cause);
49      }
50  }