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

io.mosip.preregistration.captcha.exception.CaptchaException Maven / Gradle / Ivy

package io.mosip.preregistration.captcha.exception;

import io.mosip.kernel.core.exception.BaseUncheckedException;

public class CaptchaException extends BaseUncheckedException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public CaptchaException(String errorCode, String errorMessage) {
		this.errorCode = errorCode;
		this.errorMessage = errorMessage;

	}

	private String errorCode;

	private String errorMessage;

	public String getErrorCode() {
		return errorCode;
	}

	public void setErrorCode(String errorCode) {
		this.errorCode = errorCode;
	}

	public String getErrorMessage() {
		return errorMessage;
	}

	public void setErrorMessage(String errorMessage) {
		this.errorMessage = errorMessage;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy