com.tencentcloudapi.msp.v20180319.MspErrorCode 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.msp.v20180319;
public enum MspErrorCode {
// Incorrect parameter value.
INVALIDPARAMETERVALUE("InvalidParameterValue"),
// The resource is unavailable.
RESOURCEUNAVAILABLE("ResourceUnavailable");
private String value;
private MspErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}