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

com.dahuatech.icc.oauth.exception.BusinessException Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.oauth.exception;

/**
 * program:java-sdk
 *
 * Author: 312013
 * Date:2022-07-13 09:52
 * Description:自定义异常
 */
public class BusinessException extends BaseException {

    public BusinessException(){}

    public BusinessException(String errMsg){
        super(errMsg);
    }

    public BusinessException(String code, String errMsg) {
        super(code, errMsg);
    }

    public BusinessException(String code, String errMsg, Object args){
        super(code, errMsg, args);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy