xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
提交 | 用户 | 时间
722af2 1 package com.dl.common.exception;
X 2
3 /**
4  * 工具类异常
5  *
6  * @author dl
7  */
8 public class UtilException extends RuntimeException {
9     private static final long serialVersionUID = 8247610319171014183L;
10
11     public UtilException(Throwable e) {
12         super(e.getMessage(), e);
13     }
14
15     public UtilException(String message) {
16         super(message);
17     }
18
19     public UtilException(String message, Throwable throwable) {
20         super(message, throwable);
21     }
22 }