liriming
2024-11-26 5b952f77058a9da5af5e143a6c2c7ba195aa736d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.iailab.module.model.mdk.common.exceptions;
 
public class DataAccessException extends Exception {
    public final static String errorDataAccess = "数据库访问失败";
    private Throwable cause;
 
    public DataAccessException() {
 
    }
 
    public DataAccessException(String msg) {
        super(msg);
    }
 
    public DataAccessException(String msg, Throwable cause) {
        super(msg, cause);
        this.cause = cause;
    }
}