com.yishuifengxiao.common.tool.exception.ServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-tool Show documentation
Show all versions of common-tool Show documentation
本工具包主要集成了目前在项目开发过程中个人经常会使用到的一些工具类,对工具类进行了一下简单的封装
/**
*
*/
package com.yishuifengxiao.common.tool.exception;
/**
* 逻辑层通用异常
*
* @author yishui
* @date 2018年12月27日
* @Version 0.0.1
*/
public class ServiceException extends BusinessException {
/**
*
*/
private static final long serialVersionUID = 9137605901063408685L;
/**
*
*/
public ServiceException() {
// TODO Auto-generated constructor stub
}
/**
* @param message
*/
public ServiceException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* @param cause
*/
public ServiceException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
/**
* @param message
* @param cause
*/
public ServiceException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
/**
* @param message
* @param cause
* @param enableSuppression
* @param writableStackTrace
*/
public ServiceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy