dongyukun
7 天以前 d79c5f396b23520e6370e9d9b6abc31938a0e83f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.iailab.module.model.mdk.common.exceptions;
 
//类 职 责:数据访问异常
public class RealDataLackException extends Exception {
    public final static String errorRealDataLack = "缺少实际值";
    private Throwable cause;
 
    public RealDataLackException() {
 
    }
 
    public RealDataLackException(String msg) {
        super(msg);
    }
 
    public RealDataLackException(String msg, Exception cause) {
        super(msg, cause);
        this.cause = cause;
    }
}