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

io.nixer.nixerplugin.captcha.error.CaptchaException 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
 */
public abstract class CaptchaException extends RuntimeException {

    public CaptchaException(final String message) {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy