io.higgs.http.server.HttpStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-s3 Show documentation
Show all versions of http-s3 Show documentation
Higgs HTTP S3 (Single Site Server)
package io.higgs.http.server;
import io.netty.handler.codec.http.HttpResponseStatus;
/**
* @author Courtney Robinson
*/
public class HttpStatus extends HttpResponseStatus {
/**
* Creates a new instance with the specified {@code code} and its
* {@code reasonPhrase}.
*/
public HttpStatus(int code, String reasonPhrase) {
super(code, reasonPhrase);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy