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

com.plenigo.sdk.internal.ErrorCode Maven / Gradle / Ivy

package com.plenigo.sdk.internal;

/**
 * 

* Error codes that can be returned by the API. *

*

* IMPORTANT: This class is part of the internal API, please do not use it, because it can * be removed in future versions of the SDK or access to such elements could * be changed from 'public' to 'default' or less. *

*

* Thread safety: This class is thread safe and can be injected. *

*/ public enum ErrorCode { SERVER("server", "A server error has occured, we are informed about the problem and will try to solve it as fast as possible"), INVALID_PARAMETERS("invalid_parameter", "There are invalid parameters in your request, " + "please check the ErrorDetail list in the PlenigoException object for more details"), CANNOT_ACCESS_PRODUCT("does_not_have_access", "The user cannot access the queried product"), CRYPTOGRAPHY_ERROR("crypto_error"), INVALID_SECRET_OR_COMPANY_ID("invalid_secret_or_company", "The company id or secret provided were incorrect, please check your configuration"), CONNECTION_ERROR("connection_error"), UNKNOWN_HOST("unknown_host"), PRODUCT_NOT_FOUND("product_not_found", "The provided product id is not valid"), CATEGORY_NOT_FOUND("category_not_found", "The provided category id is not valid"), USER_NOT_LOGGED_IN("user_not_logged_in", "User is not logged in"), SHIPPING_NOT_ALLOWED("shipping_not_allowed","This product type doesn't allow shipping cost!"), PRODUCT_ACCESS_ALLOWED("product_access_allowed","This user has access to this product"), APP_ID_DELETED("app_id_deleted","The app id was deleted"), INCORRECT_MOBILE_SECRET("incorrect_mobile_secret","The mobile secret or the customer id is incorrect"); private String code; private String errorMsg; /** * This constructs an error code enum with it's code and error message. * * @param errorCode The error code * @param errorMsg The error message */ private ErrorCode(String errorCode, String errorMsg) { this.code = errorCode; this.errorMsg = errorMsg; } /** * This constructs an error code enum with it's code. * * @param errorCode The error code */ private ErrorCode(String errorCode) { this.code = errorCode; } /** * Retrieves the error code based on the code or the enum name. * * @param code The error code to find * * @return An error code if it exists, otherwise it returns the SERVER error code */ public static ErrorCode get(String code) { for (ErrorCode errorCode : values()) { if (errorCode.code.equals(code) || errorCode.name().equalsIgnoreCase(code)) { return errorCode; } } return ErrorCode.SERVER; } /** * Returns the error code that corresponds to the enum value. * * @return The error code */ public String getCode() { return code; } /** * Returns the error message that corresponds to the code. * * @return The error message */ public String getMsg() { return errorMsg; } @Override public String toString() { return "ErrorCode{" + "code='" + code + '\'' + ", errorMsg='" + errorMsg + '\'' + '}'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy