com.tencentcloudapi.cis.v20180408.CisErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-cis Show documentation
Show all versions of tencentcloud-sdk-java-cis Show documentation
Tencent Cloud Open API SDK for Java
package com.tencentcloudapi.cis.v20180408;
public enum CisErrorCode {
// 内部错误。
INTERNALERROR("InternalError"),
// 参数错误。
INVALIDPARAMETER("InvalidParameter");
private String value;
private CisErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy