Coverage Report - org.mule.providers.FatalConnectException
 
Classes in this File Line Coverage Branch Coverage Complexity
FatalConnectException
0%
0/6
N/A
1
 
 1  
 /*
 2  
  * $Id: FatalConnectException.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.providers;
 12  
 
 13  
 import org.mule.config.i18n.Message;
 14  
 import org.mule.umo.lifecycle.FatalException;
 15  
 
 16  
 /**
 17  
  * TODO document
 18  
  */
 19  
 public class FatalConnectException extends FatalException
 20  
 {
 21  
     /**
 22  
      * Serial version
 23  
      */
 24  
     private static final long serialVersionUID = 3300563235465630595L;
 25  
 
 26  
     public FatalConnectException(Message message, Object component)
 27  
     {
 28  0
         super(message, component);
 29  0
     }
 30  
 
 31  
     public FatalConnectException(Message message, Throwable cause, Object component)
 32  
     {
 33  0
         super(message, cause, component);
 34  0
     }
 35  
 
 36  
     public FatalConnectException(Throwable cause, Object component)
 37  
     {
 38  0
         super(cause, component);
 39  0
     }
 40  
 }