WrongMsg.java
767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.gimi.common.cinema.model;
import com.google.gson.annotations.Expose;
public class WrongMsg extends Throwable {
/**
*
*/
private static final long serialVersionUID = 7457964260418110305L;
// "msg":"uri_not_found",
// "code":1001,
// "request":"GET \/v2\/photo\/132"
@Expose
private String msg;// wrong msg describe
@Expose
private String request;// request url and method
@Expose
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;
}
}