Coverage Report - org.mule.util.xa.ResourceManagerSystemException
 
Classes in this File Line Coverage Branch Coverage Complexity
ResourceManagerSystemException
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * $Id: ResourceManagerSystemException.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.util.xa;
 12  
 
 13  
 import org.mule.config.i18n.Message;
 14  
 
 15  
 public class ResourceManagerSystemException extends ResourceManagerException
 16  
 {
 17  
 
 18  
     /**
 19  
      * Serial version
 20  
      */
 21  
     private static final long serialVersionUID = 1202058044460490597L;
 22  
 
 23  
     /**
 24  
      * 
 25  
      */
 26  
     public ResourceManagerSystemException()
 27  
     {
 28  0
         super();
 29  0
     }
 30  
 
 31  
     /**
 32  
      * @param message
 33  
      */
 34  
     public ResourceManagerSystemException(Message message)
 35  
     {
 36  0
         super(message);
 37  0
     }
 38  
 
 39  
     /**
 40  
      * @param cause
 41  
      */
 42  
     public ResourceManagerSystemException(Throwable cause)
 43  
     {
 44  0
         super(cause);
 45  0
     }
 46  
 
 47  
     /**
 48  
      * @param message
 49  
      * @param cause
 50  
      */
 51  
     public ResourceManagerSystemException(Message message, Throwable cause)
 52  
     {
 53  0
         super(message, cause);
 54  0
     }
 55  
 
 56  
 }