View Javadoc

1   /*
2    * $Id: ResourceManagerException.java 7963 2007-08-21 08:53:15Z dirk.olmes $
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  import org.mule.umo.UMOException;
15  
16  public class ResourceManagerException extends UMOException
17  {
18      /**
19       * Serial version
20       */
21      private static final long serialVersionUID = -2710661653314559260L;
22  
23      /**
24       * 
25       */
26      public ResourceManagerException()
27      {
28          super();
29      }
30  
31      /**
32       * @param message
33       */
34      public ResourceManagerException(Message message)
35      {
36          super(message);
37      }
38  
39      /**
40       * @param cause
41       */
42      public ResourceManagerException(Throwable cause)
43      {
44          super(cause);
45      }
46  
47      /**
48       * @param message
49       * @param cause
50       */
51      public ResourceManagerException(Message message, Throwable cause)
52      {
53          super(message, cause);
54      }
55  
56  }