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

org.neogroup.httpserver.HttpBadRequestException Maven / Gradle / Ivy

The newest version!

package org.neogroup.httpserver;

/**
 * Bad Request exception
 */
public class HttpBadRequestException extends HttpException {

    public HttpBadRequestException(String msg) {
        super(msg);
    }

    public HttpBadRequestException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy