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

com.github.hekonsek.rxjava.failable.Failure Maven / Gradle / Ivy

There is a newer version: 0.3
Show newest version
package com.github.hekonsek.rxjava.failable;

public class Failure {

    private final Upstream value;

    private final Throwable cause;

    public Failure(Upstream value, Throwable cause) {
        this.value = value;
        this.cause = cause;
    }

    public Upstream value() {
        return value;
    }

    public Throwable cause() {
        return cause;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy