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

org.async.rmi.messages.ResultSetResponse Maven / Gradle / Ivy

package org.async.rmi.messages;

/**
 * Created by Barak Bar Orion
 * 7/20/15.
 */
public class ResultSetResponse extends Response {
    @SuppressWarnings("unused")
    public ResultSetResponse() {
    }
    public ResultSetResponse(Object value){
        this.result = value;
    }
    public ResultSetResponse(Object value, Throwable error){
        this.result = value;
        this.error = error;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy