Blame view

src/th/co/ais/ssbsrfc/instance/LogError.java 490 Bytes
1048b156   Suraputt Suntimitr   Template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package th.co.ais.ssbsrfc.instance;

public class LogError {
	private String ret = null;
	private String description = null;
	
	public LogError(String ret, String description) {
		super();
		this.ret = ret;
		this.description = description;
	}
	public String getRet() {
		return ret;
	}
	public void setRet(String ret) {
		this.ret = ret;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
}