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.util.xa;
8   
9   import org.mule.config.i18n.Message;
10  
11  public class ResourceManagerSystemException extends ResourceManagerException
12  {
13  
14      /**
15       * Serial version
16       */
17      private static final long serialVersionUID = 1202058044460490597L;
18  
19      /**
20       * 
21       */
22      public ResourceManagerSystemException()
23      {
24          super();
25      }
26  
27      /**
28       * @param message
29       */
30      public ResourceManagerSystemException(Message message)
31      {
32          super(message);
33      }
34  
35      /**
36       * @param cause
37       */
38      public ResourceManagerSystemException(Throwable cause)
39      {
40          super(cause);
41      }
42  
43      /**
44       * @param message
45       * @param cause
46       */
47      public ResourceManagerSystemException(Message message, Throwable cause)
48      {
49          super(message, cause);
50      }
51  
52  }