Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ResourceManagerException |
|
| 1.0;1 |
1 | /* | |
2 | * $Id: ResourceManagerException.java 19191 2010-08-25 21:05:23Z tcarlson $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.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.api.MuleException; | |
14 | import org.mule.config.i18n.Message; | |
15 | ||
16 | public class ResourceManagerException extends MuleException | |
17 | { | |
18 | /** | |
19 | * Serial version | |
20 | */ | |
21 | private static final long serialVersionUID = -2710661653314559260L; | |
22 | ||
23 | /** | |
24 | * | |
25 | */ | |
26 | public ResourceManagerException() | |
27 | { | |
28 | 0 | super(); |
29 | 0 | } |
30 | ||
31 | /** | |
32 | * @param message | |
33 | */ | |
34 | public ResourceManagerException(Message message) | |
35 | { | |
36 | 0 | super(message); |
37 | 0 | } |
38 | ||
39 | /** | |
40 | * @param cause | |
41 | */ | |
42 | public ResourceManagerException(Throwable cause) | |
43 | { | |
44 | 0 | super(cause); |
45 | 0 | } |
46 | ||
47 | /** | |
48 | * @param message | |
49 | * @param cause | |
50 | */ | |
51 | public ResourceManagerException(Message message, Throwable cause) | |
52 | { | |
53 | 0 | super(message, cause); |
54 | 0 | } |
55 | ||
56 | } |