dengzedong
2024-12-24 28c2db9d5ede90b0670446344084eb6169b6c65e
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mdk.common.exceptions;
2
3 public class ErrorCalculateFailedException extends Exception {
4     public final String errorrCalculate = "误差计算失败";
5
6     private Throwable cause;
7
8     public ErrorCalculateFailedException() {
9     }
10
11     public ErrorCalculateFailedException(String msg) {
12         super(msg);
13     }
14
15     public ErrorCalculateFailedException(String msg, Exception cause) {
16         super(msg, cause);
17         this.cause = cause;
18     }
19 }