KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > umo > routing > RoutePathNotFoundException


1 /*
2  * $Id: RoutePathNotFoundException.java 3798 2006-11-04 04:07:14Z aperepel $
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 MuleSource MPL
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>RoutePathNotFoundException</code> is thrown if a routing path for an event
19  * cannot be found. This can be caused if there is no (or no matching) endpoint for
20  * the event to route through.
21  *
22  * @author <a HREF="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
23  * @version $Revision: 3798 $
24  */

25 public class RoutePathNotFoundException extends RoutingException
26 {
27     /**
28      * Serial version
29      */

30     private static final long serialVersionUID = -8481434966594513065L;
31
32     public RoutePathNotFoundException(UMOMessage message, UMOEndpoint endpoint)
33     {
34         super(message, endpoint);
35     }
36
37     public RoutePathNotFoundException(UMOMessage umoMessage, UMOEndpoint endpoint, Throwable JavaDoc cause)
38     {
39         super(umoMessage, endpoint, cause);
40     }
41
42     public RoutePathNotFoundException(Message message, UMOMessage umoMessage, UMOEndpoint endpoint)
43     {
44         super(message, umoMessage, endpoint);
45     }
46
47     public RoutePathNotFoundException(Message message,
48                                       UMOMessage umoMessage,
49                                       UMOEndpoint endpoint,
50                                       Throwable JavaDoc cause)
51     {
52         super(message, umoMessage, endpoint, cause);
53     }
54 }
55
Popular Tags