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

com.swingfrog.summer.server.exception.CodeMsg Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package com.swingfrog.summer.server.exception;

public class CodeMsg {
	
	private final int code;
	private final String msg;
	
	public CodeMsg(int code, String msg) {
		this.code = code;
		this.msg = msg;
	}
	
	public int getCode() {
		return code;
	}
	
	public String getMsg() {
		return msg;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy