View Javadoc

1   /*
2    * $Id: CouldNotRouteInboundEventException.java 7963 2007-08-21 08:53:15Z dirk.olmes $
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  
11  package org.mule.umo.routing;
12  
13  import org.mule.config.i18n.Message;
14  import org.mule.umo.UMOMessage;
15  import org.mule.umo.endpoint.UMOEndpoint;
16  
17  /**
18   * <code>CouldNotRouteInboundEventException</code> thrown if the current component
19   * cannot accept the inbound event.
20   */
21  
22  public class CouldNotRouteInboundEventException extends RoutingException
23  {
24      /**
25       * Serial version
26       */
27      private static final long serialVersionUID = 2736231899561051615L;
28  
29      public CouldNotRouteInboundEventException(UMOMessage message, UMOEndpoint endpoint)
30      {
31          super(message, endpoint);
32      }
33  
34      public CouldNotRouteInboundEventException(UMOMessage umoMessage, UMOEndpoint endpoint, Throwable cause)
35      {
36          super(umoMessage, endpoint, cause);
37      }
38  
39      public CouldNotRouteInboundEventException(Message message, UMOMessage umoMessage, UMOEndpoint endpoint)
40      {
41          super(message, umoMessage, endpoint);
42      }
43  
44      public CouldNotRouteInboundEventException(Message message,
45                                                UMOMessage umoMessage,
46                                                UMOEndpoint endpoint,
47                                                Throwable cause)
48      {
49          super(message, umoMessage, endpoint, cause);
50      }
51  }