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;
| }
| }
|
|