提交 | 用户 | 时间
|
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 |
} |