dengzedong
2024-11-11 b2aca2d1f4d9d23d7d2ff018f60faa3b3706f9f0
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mdk.common.exceptions;
2
3 //类 职 责:算法调用异常
4 public class ArithInvokeException extends Exception {
5     public final static String errorGetArithEntity = "获取ArithEntity失败";
6     public final static String errorCreateArith = "创建Arith失败";
7
8     private Throwable cause;
9
10     public ArithInvokeException() {
11     }
12
13     public ArithInvokeException(String msg) {
14         super(msg);
15     }
16
17     public ArithInvokeException(String msg, Exception cause) {
18         super(msg, cause);
19         this.cause = cause;
20     }
21 }