Coverage Report - org.mule.util.xa.ResourceManagerException
 
Classes in this File Line Coverage Branch Coverage Complexity
ResourceManagerException
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 3  
  * The software in this package is published under the terms of the CPAL v1.0
 4  
  * license, a copy of which has been included with this distribution in the
 5  
  * LICENSE.txt file.
 6  
  */
 7  
 package org.mule.util.xa;
 8  
 
 9  
 import org.mule.api.MuleException;
 10  
 import org.mule.config.i18n.Message;
 11  
 
 12  
 public class ResourceManagerException extends MuleException
 13  
 {
 14  
     /**
 15  
      * Serial version
 16  
      */
 17  
     private static final long serialVersionUID = -2710661653314559260L;
 18  
 
 19  
     /**
 20  
      * 
 21  
      */
 22  
     public ResourceManagerException()
 23  
     {
 24  0
         super();
 25  0
     }
 26  
 
 27  
     /**
 28  
      * @param message
 29  
      */
 30  
     public ResourceManagerException(Message message)
 31  
     {
 32  0
         super(message);
 33  0
     }
 34  
 
 35  
     /**
 36  
      * @param cause
 37  
      */
 38  
     public ResourceManagerException(Throwable cause)
 39  
     {
 40  0
         super(cause);
 41  0
     }
 42  
 
 43  
     /**
 44  
      * @param message
 45  
      * @param cause
 46  
      */
 47  
     public ResourceManagerException(Message message, Throwable cause)
 48  
     {
 49  0
         super(message, cause);
 50  0
     }
 51  
 
 52  
 }