View Javadoc

1   /*
2    * $Id: RemoteDispatcherException.java 10791 2008-02-12 23:03:47Z dfeist $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  package org.mule.module.client.remoting;
11  
12  import org.mule.api.MuleException;
13  import org.mule.config.i18n.Message;
14  
15  /**
16   * Exceptions thrown by the Client RemteDispatcher.  Note that this exception is not used to wrap othor {@link UMOException}
17   * instances.
18   */
19  public class RemoteDispatcherException extends MuleException
20  {
21      /**
22       * @param message the exception message
23       */
24      public RemoteDispatcherException(Message message)
25      {
26          super(message);
27      }
28  
29      /**
30       * @param message the exception message
31       * @param cause   the exception that cause this exception to be thrown
32       */
33      public RemoteDispatcherException(Message message, Throwable cause)
34      {
35          super(message, cause);
36      }
37  }