首页>代码>SSM+apache Shiro+Jquery+Maven构建的网站后台管理系统>/CGB-JT-SYS-V1.05/src/main/java/com/jt/common/exception/ServiceException.java
package com.jt.common.exception; /*** * 为什么使用自定义异常? * 更加精确定位具体异常信息 */ public class ServiceException extends RuntimeException { private static final long serialVersionUID = -1169100027771948958L; public ServiceException() { super(); // TODO Auto-generated constructor stub } public ServiceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); // TODO Auto-generated constructor stub } public ServiceException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public ServiceException(String message) { super(message); // TODO Auto-generated constructor stub } public ServiceException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }