潘志宝
3 天以前 3903c6f4ef7f5fa7dd931bbffc51d0ce0d6f0af1
提交 | 用户 | 时间
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 }