com.volcengine.service.contentSecurity.SecuritySourceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.contentSecurity;
public class SecuritySourceException extends Exception{
private String code;
private String msg;
public SecuritySourceException(String message) {
super(message);
this.code = "SecuritySourceClientSDKRequestError";
this.msg = message;
}
public String getCode() {
return code;
}
public String getMsg() {
return msg;
}
@Override
public String toString() {
return "SecuritySourceException{" +
"code='" + code + '\'' +
", msg='" + msg + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy