All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.msp.v20180319.MspErrorCode Maven / Gradle / Ivy

There is a newer version: 3.0.1034
Show newest version
package com.tencentcloudapi.msp.v20180319;
public enum MspErrorCode {
    // Incorrect parameter value.
     INVALIDPARAMETERVALUE("InvalidParameterValue"),
     
    // The resource is unavailable.
     RESOURCEUNAVAILABLE("ResourceUnavailable");
     
    private String value;
    private MspErrorCode (String value){
        this.value = value;
    }
    /**
     * @return errorcode value
     */
    public String getValue() {
        return value;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy