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

io.github.dragons96.exception.BusinessException Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy