Class ErrorPageSupport

java.lang.Object
org.apache.catalina.util.ErrorPageSupport

public class ErrorPageSupport extends Object
Provides support for tracking per exception type and per HTTP status code error pages.
  • Constructor Details

    • ErrorPageSupport

      public ErrorPageSupport()
  • Method Details

    • add

      public void add(ErrorPage errorPage)
    • remove

      public void remove(ErrorPage errorPage)
    • find

      public ErrorPage find(int statusCode)
    • find

      public ErrorPage find(String exceptionType)
      Find the ErrorPage, if any, for the named exception type.
      Parameters:
      exceptionType - The fully qualified class name of the exception type
      Returns:
      The ErrorPage for the named exception type, or null if none is configured
    • find

      public ErrorPage find(Throwable exceptionType)
    • findAll

      public ErrorPage[] findAll()