潘志宝
2024-09-05 7fd198b8ebe97cd06b10f96b9179caebe679783c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.iailab.module.model.mdk.common.exceptions;
 
//类 职 责:模型调用异常
public class ModelInvokeException extends Exception {
    public final static String errorGetModelEntity = "获取modelEntity失败";
    public final static String errorGetModelInputCount = "获取Model输入信息失败";
    public final static String errorGetModelOutputCount = "获取Model输出信息失败";
    public final static String errorGetModelArithParam = "获取模型的算法参数失败";
    public final static String errorGetModelFile = "获取模型文件失败";
 
    private Throwable cause;
 
    public ModelInvokeException() {
 
    }
 
    public ModelInvokeException(String msg) {
        super(msg);
    }
 
    public ModelInvokeException(String msg, Throwable cause) {
        super(msg);
        this.cause = cause;
    }
}