com.tencentcloudapi.advisor.v20200721.AdvisorErrorCode 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.advisor.v20200721;
public enum AdvisorErrorCode {
// Internal error
INTERNALERROR("InternalError"),
// The dependent db encountered an error.
INTERNALERROR_DEPENDSDB("InternalError.DependsDb"),
// System error
INTERNALERROR_SYSTEM("InternalError.System"),
// Parameter error
INVALIDPARAMETER("InvalidParameter"),
// Parameter error
INVALIDPARAMETER_PARAMERROR("InvalidParameter.ParamError"),
// Parameter value error
INVALIDPARAMETERVALUE("InvalidParameterValue"),
// The resource does not exist.
RESOURCENOTFOUND("ResourceNotFound");
private String value;
private AdvisorErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}