package com.example.validate.util; /** *
统一异常 *
@author dragon *
@date 2015年9月10日 *
@version 1.0 */ public class ServiceException extends RuntimeException{ /** * */ private static final long serialVersionUID = 1L; 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 } }