Package com.tencentcloudapi.rp.v20200224
Enum RpErrorCode
- java.lang.Object
-
- java.lang.Enum<RpErrorCode>
-
- com.tencentcloudapi.rp.v20200224.RpErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<RpErrorCode>
public enum RpErrorCode extends Enum<RpErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static RpErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static RpErrorCode[]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 RpErrorCode AUTHFAILURE_CAPSIGERROR
-
AUTHFAILURE_EXPIRED
public static final RpErrorCode AUTHFAILURE_EXPIRED
-
INTERNALERROR
public static final RpErrorCode INTERNALERROR
-
INTERNALERROR_BACKENDLOGICERROR
public static final RpErrorCode INTERNALERROR_BACKENDLOGICERROR
-
INTERNALERROR_SIGNBACKENDERROR
public static final RpErrorCode INTERNALERROR_SIGNBACKENDERROR
-
INVALIDPARAMETER_CAPSIGERROR
public static final RpErrorCode INVALIDPARAMETER_CAPSIGERROR
-
INVALIDPARAMETER_PARAMERROR
public static final RpErrorCode INVALIDPARAMETER_PARAMERROR
-
INVALIDPARAMETER_URLERROR
public static final RpErrorCode INVALIDPARAMETER_URLERROR
-
INVALIDPARAMETER_VERSIONERROR
public static final RpErrorCode INVALIDPARAMETER_VERSIONERROR
-
INVALIDPARAMETERVALUE_BADBODY
public static final RpErrorCode INVALIDPARAMETERVALUE_BADBODY
-
INVALIDPARAMETERVALUE_BODYTOOLARGE
public static final RpErrorCode INVALIDPARAMETERVALUE_BODYTOOLARGE
-
INVALIDPARAMETERVALUE_CAPMISMATCH
public static final RpErrorCode INVALIDPARAMETERVALUE_CAPMISMATCH
-
INVALIDPARAMETERVALUE_HTTPMETHODERROR
public static final RpErrorCode INVALIDPARAMETERVALUE_HTTPMETHODERROR
-
LIMITEXCEEDED_FREQCNT
public static final RpErrorCode LIMITEXCEEDED_FREQCNT
-
LIMITEXCEEDED_IPFREQCNT
public static final RpErrorCode LIMITEXCEEDED_IPFREQCNT
-
LIMITEXCEEDED_KEYFREQCNT
public static final RpErrorCode LIMITEXCEEDED_KEYFREQCNT
-
LIMITEXCEEDED_REPLAYATTACK
public static final RpErrorCode LIMITEXCEEDED_REPLAYATTACK
-
RESOURCENOTFOUND_INTERFACENOTFOUND
public static final RpErrorCode RESOURCENOTFOUND_INTERFACENOTFOUND
-
RESOURCEUNAVAILABLE_PERMISSIONDENIED
public static final RpErrorCode RESOURCEUNAVAILABLE_PERMISSIONDENIED
-
UNAUTHORIZEDOPERATION_AUTHFAILED
public static final RpErrorCode UNAUTHORIZEDOPERATION_AUTHFAILED
-
UNKNOWNPARAMETER_SECRETIDNOTEXISTS
public static final RpErrorCode UNKNOWNPARAMETER_SECRETIDNOTEXISTS
-
-
Method Detail
-
values
public static RpErrorCode[] 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 (RpErrorCode c : RpErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RpErrorCode 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
-
-