com.tencentcloudapi.gme.v20180711.GmeErrorCode Maven / Gradle / Ivy
package com.tencentcloudapi.gme.v20180711;
public enum GmeErrorCode {
// Operation failed.
FAILEDOPERATION("FailedOperation"),
// Operation not allowed as your account is in arrears.
FAILEDOPERATION_USERFEENEGATIVE("FailedOperation.UserFeeNegative"),
// Internal error.
INTERNALERROR("InternalError"),
// Incorrect parameter.
INVALIDPARAMETER("InvalidParameter"),
// Incorrect callback URL.
INVALIDPARAMETER_CALLBACKADDRESS("InvalidParameter.CallbackAddress"),
// Invalid date.
INVALIDPARAMETER_DATEINVALID("InvalidParameter.DateInvalid"),
// Incorrect tag.
INVALIDPARAMETER_TAGKEY("InvalidParameter.TagKey"),
// Incorrect query time range.
INVALIDPARAMETER_TIMERANGEERROR("InvalidParameter.TimeRangeError"),
// The number of created applications has reached the upper limit.
LIMITEXCEEDED_APPLICATION("LimitExceeded.Application"),
// Missing parameter.
MISSINGPARAMETER_("MissingParameter."),
// The resource does not exist.
RESOURCENOTFOUND("ResourceNotFound"),
// Incorrect application ID.
RESOURCENOTFOUND_BIZIDISNOTFOUND("ResourceNotFound.BizidIsNotFound"),
// The resource is unavailable
RESOURCEUNAVAILABLE("ResourceUnavailable"),
// Unauthorized operation
UNAUTHORIZEDOPERATION("UnauthorizedOperation"),
// Application creation is not authorized.
UNAUTHORIZEDOPERATION_CREATEAPPDENIED("UnauthorizedOperation.CreateAppDenied"),
// Unverified user.
UNAUTHORIZEDOPERATION_UNREALNAMEAUTH("UnauthorizedOperation.UnRealNameAuth"),
// Unknown parameter.
UNKNOWNPARAMETER("UnknownParameter"),
// Operation unsupported.
UNSUPPORTEDOPERATION("UnsupportedOperation");
private String value;
private GmeErrorCode (String value){
this.value = value;
}
/**
* @return errorcode value
*/
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy