Back to project page Music-Share-Android.
The source code is released under:
GNU General Public License
If you think the Android project Music-Share-Android 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.weibo.sdk.android; //from ww w. ja v a2 s . co m public class WeiboDialogError extends Throwable { private static final long serialVersionUID = 1L; private int mErrorCode; private String mFailingUrl; public WeiboDialogError(String message, int errorCode, String failingUrl) { super(message); mErrorCode = errorCode; mFailingUrl = failingUrl; } /** * ????????? * @return */ int getErrorCode() { return mErrorCode; } /** * ?????????url * @return */ String getFailingUrl() { return mFailingUrl; } }