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

net.yadaframework.web.exceptions.YadaHttpNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.7.7.R4
Show newest version
package net.yadaframework.web.exceptions;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

/**
 * Throw this exception to generate a 404 HTTP return code
 *
 */
@ResponseStatus(value=HttpStatus.NOT_FOUND)  // 404
public class YadaHttpNotFoundException extends RuntimeException {
	private static final long serialVersionUID = -357253456084830193L;

	public YadaHttpNotFoundException() {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy