admin
昨天 768498719683f85e5ed19c73eb3d14cdbf420df4
提交 | 用户 | 时间
e57a89 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 }