Back to project page Android-VKontakte-SDK.
The source code is released under:
MIT License
If you think the Android project Android-VKontakte-SDK 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.perm.kate.api; /* w w w. jav a 2s . c om*/ @SuppressWarnings("serial") public class KException extends Exception{ KException(int code, String message, String url){ super(message); error_code=code; this.url=url; } public int error_code; public String url; //for captcha public String captcha_img; public String captcha_sid; //for "Validation required" error public String redirect_uri; }