com.tencentcloudapi.cdwdoris.v20211228.CdwdorisErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
package com.tencentcloudapi.cdwdoris.v20211228;
public enum CdwdorisErrorCode {
// Internal error.
INTERNALERROR("InternalError");
private String value;
private CdwdorisErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}