1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.transaction; |
8 | |
|
9 | |
import org.mule.api.transaction.TransactionException; |
10 | |
import org.mule.config.i18n.CoreMessages; |
11 | |
import org.mule.config.i18n.Message; |
12 | |
|
13 | |
public class TransactionRollbackException extends TransactionException |
14 | |
{ |
15 | |
|
16 | |
|
17 | |
|
18 | |
private static final long serialVersionUID = -3247455113055556221L; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
public TransactionRollbackException(Message message) |
24 | |
{ |
25 | 0 | super(message); |
26 | 0 | } |
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
public TransactionRollbackException(Message message, Throwable cause) |
33 | |
{ |
34 | 0 | super(message, cause); |
35 | 0 | } |
36 | |
|
37 | |
public TransactionRollbackException(Throwable cause) |
38 | |
{ |
39 | 0 | super(CoreMessages.transactionRollbackFailed(), cause); |
40 | 0 | } |
41 | |
|
42 | |
} |