You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Matthew Alexander (JIRA)" <de...@myfaces.apache.org> on 2015/09/06 11:09:45 UTC

[jira] [Created] (MYFACES-4012) Documentation wrong about Error handling

Matthew Alexander created MYFACES-4012:
------------------------------------------

             Summary: Documentation wrong about Error handling
                 Key: MYFACES-4012
                 URL: https://issues.apache.org/jira/browse/MYFACES-4012
             Project: MyFaces Core
          Issue Type: Bug
          Components: website
            Reporter: Matthew Alexander
            Priority: Minor


https://cwiki.apache.org/confluence/display/MYFACES/Handling+Server+Errors

Current version:
{quote}
*Provide an error page*
The default ExceptionHandler in Production stage or when myfaces error handling is disabled just throw an exception. So you can still setup an error page adding something like this in your web.xml file:
{code}<error-page>
    <error-code>500</error-code>
    <location>/somepage.jsp</location>
</error-page>{code}
{quote}

Should be:
{quote}
*Provide an error page*
If org.apache.myfaces.ERROR_HANDLING is set to "false", or if it is undefined and the project stage is "Development", the default ExceptionHandler just throws an exception. So you can still setup an error page by adding something like this in your web.xml file:
{code}<error-page>
    <error-code>500</error-code>
    <location>/somepage.jsp</location>
</error-page>{code}
{quote}

Changes
- Corrected the explanation of the behavior of the default ExceptionHandler.
- Improved the grammar.




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)