Package com.tencentcloudapi.aa.v20200224
Enum AaErrorCode
- java.lang.Object
-
- java.lang.Enum<AaErrorCode>
-
- com.tencentcloudapi.aa.v20200224.AaErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<AaErrorCode>
public enum AaErrorCode extends Enum<AaErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static AaErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static AaErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE_CAPSIGERROR
public static final AaErrorCode AUTHFAILURE_CAPSIGERROR
-
AUTHFAILURE_EXPIRED
public static final AaErrorCode AUTHFAILURE_EXPIRED
-
INTERNALERROR
public static final AaErrorCode INTERNALERROR
-
INTERNALERROR_BACKENDLOGICERROR
public static final AaErrorCode INTERNALERROR_BACKENDLOGICERROR
-
INTERNALERROR_SIGNBACKENDERROR
public static final AaErrorCode INTERNALERROR_SIGNBACKENDERROR
-
INVALIDPARAMETER_CAPSIGERROR
public static final AaErrorCode INVALIDPARAMETER_CAPSIGERROR
-
INVALIDPARAMETER_PARAMERROR
public static final AaErrorCode INVALIDPARAMETER_PARAMERROR
-
INVALIDPARAMETER_URLERROR
public static final AaErrorCode INVALIDPARAMETER_URLERROR
-
INVALIDPARAMETER_VERSIONERROR
public static final AaErrorCode INVALIDPARAMETER_VERSIONERROR
-
INVALIDPARAMETERVALUE_BADBODY
public static final AaErrorCode INVALIDPARAMETERVALUE_BADBODY
-
INVALIDPARAMETERVALUE_BODYTOOLARGE
public static final AaErrorCode INVALIDPARAMETERVALUE_BODYTOOLARGE
-
INVALIDPARAMETERVALUE_CAPMISMATCH
public static final AaErrorCode INVALIDPARAMETERVALUE_CAPMISMATCH
-
INVALIDPARAMETERVALUE_HTTPMETHODERROR
public static final AaErrorCode INVALIDPARAMETERVALUE_HTTPMETHODERROR
-
LIMITEXCEEDED_FREQCNT
public static final AaErrorCode LIMITEXCEEDED_FREQCNT
-
LIMITEXCEEDED_IPFREQCNT
public static final AaErrorCode LIMITEXCEEDED_IPFREQCNT
-
LIMITEXCEEDED_KEYFREQCNT
public static final AaErrorCode LIMITEXCEEDED_KEYFREQCNT
-
LIMITEXCEEDED_REPLAYATTACK
public static final AaErrorCode LIMITEXCEEDED_REPLAYATTACK
-
RESOURCENOTFOUND_INTERFACENOTFOUND
public static final AaErrorCode RESOURCENOTFOUND_INTERFACENOTFOUND
-
RESOURCEUNAVAILABLE_PERMISSIONDENIED
public static final AaErrorCode RESOURCEUNAVAILABLE_PERMISSIONDENIED
-
UNAUTHORIZEDOPERATION_AUTHFAILED
public static final AaErrorCode UNAUTHORIZEDOPERATION_AUTHFAILED
-
UNKNOWNPARAMETER_SECRETIDNOTEXISTS
public static final AaErrorCode UNKNOWNPARAMETER_SECRETIDNOTEXISTS
-
-
Method Detail
-
values
public static AaErrorCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AaErrorCode c : AaErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AaErrorCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
- Returns:
- errorcode value
-
-