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