Coverage Report - org.mule.transaction.TransactionStatusException
 
Classes in this File Line Coverage Branch Coverage Complexity
TransactionStatusException
0%
0/6
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.transaction;
 8  
 
 9  
 import org.mule.api.transaction.TransactionException;
 10  
 import org.mule.config.i18n.CoreMessages;
 11  
 import org.mule.config.i18n.Message;
 12  
 
 13  
 public class TransactionStatusException extends TransactionException
 14  
 {
 15  
     /**
 16  
      * Serial version
 17  
      */
 18  
     private static final long serialVersionUID = -2408368544426562868L;
 19  
 
 20  
     /**
 21  
      * @param message the exception message
 22  
      */
 23  
     public TransactionStatusException(Message message)
 24  
     {
 25  0
         super(message);
 26  0
     }
 27  
 
 28  
     /**
 29  
      * @param message the exception message
 30  
      * @param cause the exception that cause this exception to be thrown
 31  
      */
 32  
     public TransactionStatusException(Message message, Throwable cause)
 33  
     {
 34  0
         super(message, cause);
 35  0
     }
 36  
 
 37  
     public TransactionStatusException(Throwable cause)
 38  
     {
 39  0
         super(CoreMessages.transactionCannotReadState(), cause);
 40  0
     }
 41  
 }