View Javadoc
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.config.i18n.Message;
10  
11  /**
12   * <p>
13   * <code>TransactionNotInProgressException</code> TODO (document class)
14   */
15  public class TransactionNotInProgressException extends TransactionStatusException
16  {
17      /**
18       * Serial version
19       */
20      private static final long serialVersionUID = -4825546092229025015L;
21  
22      /**
23       * @param message the exception message
24       */
25      public TransactionNotInProgressException(Message message)
26      {
27          super(message);
28      }
29  
30      /**
31       * @param message the exception message
32       * @param cause the exception that cause this exception to be thrown
33       */
34      public TransactionNotInProgressException(Message message, Throwable cause)
35      {
36          super(message, cause);
37      }
38  
39  }