工业互联网平台2.0版本后端代码
潘志宝
2025-04-22 edf66f68df77254d85f52fedde9eba171c475e20
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;
    }
}