提交 | 用户 | 时间 | ||
7fd198 | 1 | package com.iailab.module.model.mdk.common.exceptions; |
潘 | 2 | |
3 | //类 职 责:样本准备异常 | |
4 | public class SamplePrepareException extends Exception { | |
5 | public final String errorGetHistoryData = "获取历史数据失败"; | |
6 | private Throwable cause; | |
7 | ||
8 | public SamplePrepareException() { | |
9 | } | |
10 | ||
11 | public SamplePrepareException(String msg) { | |
12 | super(msg); | |
13 | } | |
14 | ||
15 | public SamplePrepareException(String msg, Exception cause) { | |
16 | super(msg, cause); | |
17 | this.cause = cause; | |
18 | } | |
19 | } |