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

io.spotnext.cms.exception.PageNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.0.21-BETA-20190513
Show newest version
package io.spotnext.cms.exception;

/**
 * Exception that indicates that a page was not found. May be interpreted as a
 * HTTP 404.
 */
public class PageNotFoundException extends Exception {
	private static final long serialVersionUID = 1L;

	/**
	 * @param message giving more information about the exception.
	 */
	public PageNotFoundException(final String message) {
		super(message);
	}

	/**
	 * @param message giving more information about the exception.
	 * @param rootCause of the exception
	 */
	public PageNotFoundException(final String message, final Throwable rootCause) {
		super(message, rootCause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy