hjg
2023-10-14 f6c2f15c37aef4675dda01fb5ec17cde4e141c3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.mandi.common;
 
/** 
 * @author mengly 
 * @version 创建时间:2017年1月18日 下午6:18:41 
 * 类说明 
 */
 
public class TransactionException extends Exception {
    private static final long serialVersionUID = 1L;
 
    public TransactionException() {
        super();
    }
 
    public TransactionException(String message, Throwable cause,
            boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
 
    public TransactionException(String message, Throwable cause) {
        super(message, cause);
    }
 
    public TransactionException(String message) {
        super(message);
    }
 
    public TransactionException(Throwable cause) {
        super(cause);
    }
    
}