All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.labbol.service.exception.ErrorResponse Maven / Gradle / Ivy

/**
 * 
 */
package com.labbol.service.exception;

/**
 * @author PengFei
 */
public class ErrorResponse {

	private String code;
	private String msg;

	public ErrorResponse(String code, String msg) {
		super();
		this.code = code;
		this.msg = msg;
	}

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public String getMsg() {
		return msg;
	}

	public void setMsg(String msg) {
		this.msg = msg;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy