io.github.dragons96.exception.BusinessException Maven / Gradle / Ivy
package io.github.dragons96.exception;
import io.github.dragons96.IResponseEnum;
/**
* 业务异常
* @author dragons
* @date 2022/3/16 10:39
*/
public class BusinessException extends BaseException {
private final static long serialVersionUID = 1L;
public BusinessException(IResponseEnum responseEnum, Object[] args, String message) {
super(responseEnum, args, message);
}
public BusinessException(IResponseEnum responseEnum, Object[] args, String message, Throwable cause) {
super(responseEnum, args, message, cause);
}
}