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

io.joshworks.stream.client.ClientException Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package io.joshworks.stream.client;

/**
 * Created by Josh Gontijo on 6/2/17.
 */
public class ClientException extends RuntimeException {

    private final int status;

    public ClientException(int status, String message) {
        super(message);
        this.status = status;
    }

    public int getStatus() {
        return status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy