Package com.oorian

Class DefaultNotFoundPage


public class DefaultNotFoundPage extends DefaultErrorPage
Built-in 404 error page that displays a clean "Page Not Found" message.

This page is a specialization of DefaultErrorPage for HTTP 404 responses. It can be explicitly registered for the 404 status code, or left to the framework's automatic fallback which uses DefaultErrorPage for all unregistered status codes.

Usage:


 setErrorPage(404, DefaultNotFoundPage.class);
 
Since:
2.1
Version:
1.0
Author:
Marvin P. Warble Jr.
See Also:
  • Constructor Details

    • DefaultNotFoundPage

      public DefaultNotFoundPage()
      Creates a new DefaultNotFoundPage instance.