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

de.factoryfx.server.rest.client.HttpStatusException Maven / Gradle / Ivy

The newest version!
package de.factoryfx.server.rest.client;

public class HttpStatusException extends RuntimeException {

    public final int status;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy