Enum TcbErrorCode
- java.lang.Object
-
- java.lang.Enum<TcbErrorCode>
-
- com.tencentcloudapi.tcb.v20180608.TcbErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<TcbErrorCode>
public enum TcbErrorCode extends Enum<TcbErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static TcbErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static TcbErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final TcbErrorCode AUTHFAILURE
-
AUTHFAILURE_UNAUTHORIZEDOPERATION
public static final TcbErrorCode AUTHFAILURE_UNAUTHORIZEDOPERATION
-
FAILEDOPERATION
public static final TcbErrorCode FAILEDOPERATION
-
FAILEDOPERATION_PARTIALFAILURE
public static final TcbErrorCode FAILEDOPERATION_PARTIALFAILURE
-
FAILEDOPERATION_PLATFORMERROR
public static final TcbErrorCode FAILEDOPERATION_PLATFORMERROR
-
INTERNALERROR
public static final TcbErrorCode INTERNALERROR
-
INTERNALERROR_DATABASE
public static final TcbErrorCode INTERNALERROR_DATABASE
-
INTERNALERROR_SYSTEMFAIL
public static final TcbErrorCode INTERNALERROR_SYSTEMFAIL
-
INTERNALERROR_TIMEOUT
public static final TcbErrorCode INTERNALERROR_TIMEOUT
-
INVALIDPARAMETER
public static final TcbErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_APICREATED
public static final TcbErrorCode INVALIDPARAMETER_APICREATED
-
INVALIDPARAMETER_ACTION
public static final TcbErrorCode INVALIDPARAMETER_ACTION
-
INVALIDPARAMETER_ENVID
public static final TcbErrorCode INVALIDPARAMETER_ENVID
-
INVALIDPARAMETER_PATHEXIST
public static final TcbErrorCode INVALIDPARAMETER_PATHEXIST
-
INVALIDPARAMETER_RESOURCENOTEXISTS
public static final TcbErrorCode INVALIDPARAMETER_RESOURCENOTEXISTS
-
INVALIDPARAMETER_SERVICEEVIL
public static final TcbErrorCode INVALIDPARAMETER_SERVICEEVIL
-
INVALIDPARAMETER_SERVICENOTEXIST
public static final TcbErrorCode INVALIDPARAMETER_SERVICENOTEXIST
-
INVALIDPARAMETERVALUE
public static final TcbErrorCode INVALIDPARAMETERVALUE
-
LIMITEXCEEDED
public static final TcbErrorCode LIMITEXCEEDED
-
LIMITEXCEEDED_CONCURRENT
public static final TcbErrorCode LIMITEXCEEDED_CONCURRENT
-
LIMITEXCEEDED_ERRNAMESPACEMAXLIMIT
public static final TcbErrorCode LIMITEXCEEDED_ERRNAMESPACEMAXLIMIT
-
LIMITEXCEEDED_ERRREPOMAXLIMIT
public static final TcbErrorCode LIMITEXCEEDED_ERRREPOMAXLIMIT
-
LIMITEXCEEDED_REQUEST
public static final TcbErrorCode LIMITEXCEEDED_REQUEST
-
MISSINGPARAMETER
public static final TcbErrorCode MISSINGPARAMETER
-
MISSINGPARAMETER_PARAM
public static final TcbErrorCode MISSINGPARAMETER_PARAM
-
OPERATIONDENIED
public static final TcbErrorCode OPERATIONDENIED
-
OPERATIONDENIED_RESOURCEFROZEN
public static final TcbErrorCode OPERATIONDENIED_RESOURCEFROZEN
-
RESOURCEINUSE
public static final TcbErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final TcbErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final TcbErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_USERNOTEXISTS
public static final TcbErrorCode RESOURCENOTFOUND_USERNOTEXISTS
-
RESOURCEUNAVAILABLE
public static final TcbErrorCode RESOURCEUNAVAILABLE
-
RESOURCEUNAVAILABLE_BALANCENOTENOUGH
public static final TcbErrorCode RESOURCEUNAVAILABLE_BALANCENOTENOUGH
-
RESOURCEUNAVAILABLE_CDNFREEZED
public static final TcbErrorCode RESOURCEUNAVAILABLE_CDNFREEZED
-
RESOURCEUNAVAILABLE_INVOICEAMOUNTLACK
public static final TcbErrorCode RESOURCEUNAVAILABLE_INVOICEAMOUNTLACK
-
RESOURCEUNAVAILABLE_REFRESHTOKENEXPIRED
public static final TcbErrorCode RESOURCEUNAVAILABLE_REFRESHTOKENEXPIRED
-
RESOURCEUNAVAILABLE_RESOURCEOVERDUE
public static final TcbErrorCode RESOURCEUNAVAILABLE_RESOURCEOVERDUE
-
UNAUTHORIZEDOPERATION
public static final TcbErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_CODEOAUTHUNAUTHORIZED
public static final TcbErrorCode UNAUTHORIZEDOPERATION_CODEOAUTHUNAUTHORIZED
-
UNKNOWNPARAMETER
public static final TcbErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final TcbErrorCode UNSUPPORTEDOPERATION
-
UNSUPPORTEDOPERATION_TASKEXISTED
public static final TcbErrorCode UNSUPPORTEDOPERATION_TASKEXISTED
-
-
Method Detail
-
values
public static TcbErrorCode[] 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 (TcbErrorCode c : TcbErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TcbErrorCode 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
-
-