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; } }