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

io.gs2.core.net.Gs2Response Maven / Gradle / Ivy

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