Android Open Source - Android-Lib-reCAPTCHA Re Captcha Exception






From Project

Back to project page Android-Lib-reCAPTCHA.

License

The source code is released under:

Apache License

If you think the Android project Android-Lib-reCAPTCHA listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package android.lib.recaptcha;
/*ww w  .jav  a  2s.com*/
/**
 * Exception to send when the downloaded <a href="http://captcha.net/">CAPTCHA</a> content is malformed.
 */
public class ReCaptchaException extends Exception {
    public ReCaptchaException() {
    }

    public ReCaptchaException(final String detailMessage) {
        super(detailMessage);
    }

    public ReCaptchaException(final String detailMessage, final Throwable throwable) {
        super(detailMessage, throwable);
    }

    public ReCaptchaException(final Throwable throwable) {
        super(throwable);
    }
}




Java Source Code List

android.lib.recaptcha.ReCaptchaException.java
android.lib.recaptcha.ReCaptcha.java
android.lib.recaptcha.samples.SampleActivity.java