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

coo.mvc.api.ApiException Maven / Gradle / Ivy

package coo.mvc.api;

/**
 * API异常。
 */
public class ApiException extends RuntimeException {
	private static final long serialVersionUID = 3703190701308868615L;
	private String code;
	private String msg;

	public ApiException(String code, String msg) {
		super(code + ":" + msg);
		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