Back to project page DoomPlay.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUC...
If you think the Android project DoomPlay 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 com.api; //w w w . j ava2 s . c o m @SuppressWarnings("serial") public class KException extends Exception{ KException(int code, String message, String url){ super(message); error_code=code; this.url=url; } private final int error_code; private final String url; //for captcha public String captcha_img; public String captcha_sid; }