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

com.github.mkopylec.recaptcha.validation.RecaptchaValidationException Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
package com.github.mkopylec.recaptcha.validation;

import static java.lang.String.format;

public class RecaptchaValidationException extends RuntimeException {

    public RecaptchaValidationException(String userResponse, String verificationUrl, Throwable cause) {
        super(format("Error validating reCAPTCHA. User response: '%s', verification URL: '%s'", userResponse, verificationUrl), cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy