提交 | 用户 | 时间 | ||
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 | } |