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