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