package com.whdc.zhdbaqapi.exception; /** * @author 李赛 * @date 2022-06-26 10:58 */ public class MyException extends RuntimeException { private String msg; public String getMsg() { return msg; } public MyException(String msg) { super(msg); this.msg = msg; } public MyException(String msg, Throwable e) { super(msg, e); this.msg = msg; } }