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

top.remliyx.dbeasy.utils.exception.EasyBizException Maven / Gradle / Ivy

There is a newer version: 2.0.0-RELEASE
Show newest version
package top.remliyx.dbeasy.utils.exception;

import top.remliyx.dbeasy.utils.exception.base.BizException;

/**
 * 文件说明:
 * 创建作者: 李宜栩
 * 创建日期: 2023-6-29
 * 版权所有:lyx
 * 版本:    Version 1.0
 */
public class EasyBizException extends BizException {
    public EasyBizException(String code, Object... args) {
        super(getProperty(code, args), new Object[0]);
    }

    public EasyBizException(String code, Throwable e, Object... args) {
        super(getProperty(code, args), e);
    }

    public EasyBizException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy