Back to project page Android-Lib-reCAPTCHA.
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.
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); } }