Package org.apache.catalina.util
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 Summary
Constructors Constructor Description ErrorPageSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
add(ErrorPage errorPage)
ErrorPage
find(int statusCode)
ErrorPage
find(String exceptionType)
Deprecated.Unused.ErrorPage
find(Throwable exceptionType)
ErrorPage[]
findAll()
void
remove(ErrorPage errorPage)
-
-
-
Method Detail
-
add
public void add(ErrorPage errorPage)
-
remove
public void remove(ErrorPage errorPage)
-
find
public ErrorPage find(int statusCode)
-
find
@Deprecated public ErrorPage find(String exceptionType)
Deprecated.Unused. Will be removed in Tomcat 10. Usefind(Throwable)
instead.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
-
findAll
public ErrorPage[] findAll()
-
-