中国算力平台算力登记系统2.0
YZFG
2024-09-30 43dc2996fd2033991539ed35a0429238829a5417
commit | author | age
43dc29 1 package com.odcc.cpzidc.common.exception;
Y 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 }