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