com.swingfrog.summer.server.exception.CodeMsg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of summer Show documentation
Show all versions of summer Show documentation
a lightweight game server framework
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