com.tencentcloudapi.dtf.v20200506.DtfErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-dtf Show documentation
Show all versions of tencentcloud-sdk-java-dtf Show documentation
Tencent Cloud Open API SDK for Java
package com.tencentcloudapi.dtf.v20200506;
public enum DtfErrorCode {
// 事务分组ID称未填写。
MISSINGPARAMETER_GROUPIDREQUIRED("MissingParameter.GroupIdRequired"),
// 事务分组不存在。
RESOURCENOTFOUND_GROUPNOTEXIST("ResourceNotFound.GroupNotExist");
private String value;
private DtfErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy