
io.gs2.core.net.Gs2Response 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.net;
import io.gs2.core.exception.Gs2Exception;
public abstract class Gs2Response {
protected String message;
protected Gs2Exception exception;
public Gs2Response(String message)
{
this.message = message;
}
public String getMessage()
{
return message;
}
public Gs2Exception getGs2Exception()
{
return exception;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy