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