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

io.higgs.http.server.HttpStatus Maven / Gradle / Ivy

There is a newer version: 0.0.24
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy