Coverage Report - org.mule.api.transport.DispatchException
 
Classes in this File Line Coverage Branch Coverage Complexity
DispatchException
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * $Id: DispatchException.java 10489 2008-01-23 17:53:38Z 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  
 
 11  
 package org.mule.api.transport;
 12  
 
 13  
 import org.mule.api.MuleMessage;
 14  
 import org.mule.api.endpoint.ImmutableEndpoint;
 15  
 import org.mule.api.routing.RoutingException;
 16  
 import org.mule.config.i18n.Message;
 17  
 
 18  
 /**
 19  
  * <code>DispatchException</code> is thrown when an endpoint dispatcher fails to
 20  
  * send, dispatch or receive a message.
 21  
  */
 22  
 
 23  
 public class DispatchException extends RoutingException
 24  
 {
 25  
     /**
 26  
      * Serial version
 27  
      */
 28  
     private static final long serialVersionUID = -8204621943732496605L;
 29  
 
 30  
     public DispatchException(MuleMessage message, ImmutableEndpoint endpoint)
 31  
     {
 32  0
         super(message, endpoint);
 33  0
     }
 34  
 
 35  
     public DispatchException(MuleMessage umoMessage, ImmutableEndpoint endpoint, Throwable cause)
 36  
     {
 37  0
         super(umoMessage, endpoint, cause);
 38  0
     }
 39  
 
 40  
     public DispatchException(Message message, MuleMessage umoMessage, ImmutableEndpoint endpoint)
 41  
     {
 42  0
         super(message, umoMessage, endpoint);
 43  0
     }
 44  
 
 45  
     public DispatchException(Message message,
 46  
                              MuleMessage umoMessage,
 47  
                              ImmutableEndpoint endpoint,
 48  
                              Throwable cause)
 49  
     {
 50  0
         super(message, umoMessage, endpoint, cause);
 51  0
     }
 52  
 }