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