dengzedong
2024-11-11 b2aca2d1f4d9d23d7d2ff018f60faa3b3706f9f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.iailab.module.model.mdk.common.exceptions;
 
//类 职 责:预测项调用异常
public class ItemInvokeException extends Exception {
    public final static String errorGetItemEntity = "获取ItemEntity失败";
    public final static String errorGetItemOutput = "获取Item输出信息失败";
    public final static String errorItemFailed = "预测项预测失败";
 
    private Throwable cause;
 
    public ItemInvokeException() {
    }
 
    public ItemInvokeException(String msg) {
        super(msg);
    }
 
    public ItemInvokeException(String msg, Exception cause) {
        super(msg);
        this.cause = cause;
    }
}