View Javadoc

1   /*
2    * $Id: ResourceManagerSystemException.java 8077 2007-08-27 20:15:25Z aperepel $
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          super();
29      }
30  
31      /**
32       * @param message
33       */
34      public ResourceManagerSystemException(Message message)
35      {
36          super(message);
37      }
38  
39      /**
40       * @param cause
41       */
42      public ResourceManagerSystemException(Throwable cause)
43      {
44          super(cause);
45      }
46  
47      /**
48       * @param message
49       * @param cause
50       */
51      public ResourceManagerSystemException(Message message, Throwable cause)
52      {
53          super(message, cause);
54      }
55  
56  }