
io.gs2.core.model.RequestError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-sdk Show documentation
Show all versions of gs2-java-sdk Show documentation
Game Server Services SDK for Java
The newest version!
package io.gs2.core.model;
public class RequestError {
String component;
String message;
String code;
public RequestError() {}
public RequestError(String component, String message, String code) {
this.component = component;
this.message = message;
this.code = code;
}
public String getComponent() {
return component;
}
public void setComponent(String component) {
this.component = component;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy