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

io.mosip.preregistration.captcha.constants.CaptchaErrorCode Maven / Gradle / Ivy

package io.mosip.preregistration.captcha.constants;

public enum CaptchaErrorCode {

	INVALID_CAPTCHA_CODE("PRG-PAM-005", "Invalid Captcha entered"),
	INVALID_CAPTCHA_REQUEST("PRG-PAM-006", "Invalid request , Request can't be null or empty");

	private final String errorCode;
	private final String errorMessage;

	private CaptchaErrorCode(String errorCode, String errorMessage) {
		this.errorCode = errorCode;
		this.errorMessage = errorMessage;
	}

	public String getErrorCode() {
		return errorCode;
	}

	public String getErrorMessage() {
		return errorMessage;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy