All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yishuifengxiao.common.tool.exception.BusinessException Maven / Gradle / Ivy

/**
 * 
 */
package com.yishuifengxiao.common.tool.exception;

/**
 * 业务类异常
 * @author yishui
 * @date 2018年12月27日
 * @version 0.0.1
 */
public class BusinessException extends CustomException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1685175094020913929L;

	public BusinessException() {
		super();
		// TODO Auto-generated constructor stub
	}

	public BusinessException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
		// TODO Auto-generated constructor stub
	}

	public BusinessException(String message, Throwable cause) {
		super(message, cause);
		// TODO Auto-generated constructor stub
	}

	public BusinessException(String message) {
		super(message);

	}

	public BusinessException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy