package com.bwie.common.exception; /** * @Author:zhangzhihao * @name:AllException * @Date:2024/7/23 9:18 * 不准抄代码,添加注释,清楚每一行代码意思 */ public class AllException extends RuntimeException { public AllException() { super(); } public AllException(String message) { super(message); } public AllException(String message, Throwable cause) { super(message, cause); } public AllException(Throwable cause) { super(cause); } }