com.tencentcloudapi.tiems.v20190416.TiemsErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-tiems Show documentation
Show all versions of tencentcloud-sdk-java-tiems Show documentation
Tencent Cloud Open API SDK for Java
package com.tencentcloudapi.tiems.v20190416;
public enum TiemsErrorCode {
// 操作失败。
FAILEDOPERATION("FailedOperation"),
// 已经存在同名资源。
FAILEDOPERATION_ALREADYEXISTS("FailedOperation.AlreadyExists"),
// 内部错误。
INTERNALERROR("InternalError"),
// 参数错误。
INVALIDPARAMETER("InvalidParameter"),
// 资源不存在。
RESOURCENOTFOUND("ResourceNotFound"),
// 未授权操作。
UNAUTHORIZEDOPERATION("UnauthorizedOperation"),
// 操作不支持。
UNSUPPORTEDOPERATION("UnsupportedOperation");
private String value;
private TiemsErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}