com.dahuatech.icc.oauth.exception.BusinessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-oauth Show documentation
Show all versions of java-sdk-oauth Show documentation
Dahua ICC Open API SDK for Java
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);
}
}