de.factoryfx.server.rest.client.HttpStatusException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restutilClient Show documentation
Show all versions of restutilClient Show documentation
factoryfx dependency injection framework
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;
}
}