提交 | 用户 | 时间 | ||
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 | } |