Back to project page doubanbook4android.
The source code is released under:
Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...
If you think the Android project doubanbook4android 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.study.doubanbook_for_android.api; /*w w w .j av a2s . co m*/ public class WrongMsg extends Throwable { /** * */ private static final long serialVersionUID = 7457964260418110305L; // "msg":"uri_not_found", // "code":1001, // "request":"GET \/v2\/photo\/132" private String msg;// wrong msg describe private String request;// request url and method private int code;// wrong code public String getMsg() { return msg; } public void setMsg(String msg) { this.msg = msg; } public String getRequest() { return request; } public void setRequest(String request) { this.request = request; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } }