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

io.nixer.nixerplugin.captcha.error.CaptchaServiceException Maven / Gradle / Ivy

There is a newer version: 0.1.1.3
Show newest version
package io.nixer.nixerplugin.captcha.error;

/**
 * Thrown if an captcha verification failed due to communication error.
 * For this exception to be thrown, it means that request failed as result of timeout, connectivity etc.
 */
public class CaptchaServiceException extends CaptchaException {
    public CaptchaServiceException(final String message) {
        super(message);
    }

    public CaptchaServiceException(final String message, final Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy