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