提交 | 用户 | 时间 | ||
fd2207 | 1 | package com.jcdm.common.exception; |
懒 | 2 | |
3 | /** | |
4 | * 工具类异常 | |
5 | * | |
6 | * @author jc | |
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 | } |