dongyukun
8 天以前 e88fba9645a57535d858ce48da8e9d9a3dc84adc
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mdk.common.exceptions;
2
3 public class DataAccessException extends Exception {
4     public final static String errorDataAccess = "数据库访问失败";
5     private Throwable cause;
6
7     public DataAccessException() {
8
9     }
10
11     public DataAccessException(String msg) {
12         super(msg);
13     }
14
15     public DataAccessException(String msg, Throwable cause) {
16         super(msg, cause);
17         this.cause = cause;
18     }
19 }