dengzedong
2024-11-11 b2aca2d1f4d9d23d7d2ff018f60faa3b3706f9f0
提交 | 用户 | 时间
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 }