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

info.unterrainer.commons.httpserver.exceptions.NotFoundException Maven / Gradle / Ivy

There is a newer version: 0.3.14
Show newest version
package info.unterrainer.commons.httpserver.exceptions;

public class NotFoundException extends HttpException {

	private static final long serialVersionUID = 4874647033269515312L;

	public static final int HTTP_STATUS = 404;
	public static final String HTTP_TEXT = "Not Found";

	public NotFoundException(final String message, final Throwable cause) {
		super(HTTP_STATUS, HTTP_TEXT, message, cause);
	}

	public NotFoundException(final String message) {
		super(HTTP_STATUS, HTTP_TEXT, message);
	}

	public NotFoundException() {
		super(HTTP_STATUS, HTTP_TEXT);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy