close Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": No module named svn). Look in the Trac log for more information.

Changes between Version 2 and Version 3 of ErrorHandling


Ignore:
Timestamp:
Jun 26, 2008, 6:45:57 PM (16 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ErrorHandling

    v2 v3  
    22
    33Any exception raised by a [RequestHandlers request handler] (or a [RequestFilters request filter] for that matter) is by default caught by the `error_filter`. This filter is responsible for turning HTTP exceptions such as redirects into the appropriate HTTP response.
     4
     5Exceptions that are not instances of the `HTTPException` class are treated as internal errors and result in a `500 Internal Server Error` HTTP response.
    46
    57== Error Page Templates ==
     
    1315== Error Email Notification ==
    1416
    15 If an SMTP server and email address are [ConfigOptions configured], email notifications on internal errors are sent out, including the requested URL, various other information, and a traceback.
     17If an SMTP server and email address are [ConfigOptions configured], email notifications (in plain text format) are sent out  on internal errors. The emails include the requested URL, various other information, and a traceback.
    1618
    1719== Developer Error Page ==
     
    2224
    2325If the `debug` option is enabled, you will be able to inspect the template data and system information for any page simply by adding the `debug` parameter to the query string (the value of the parameter is ignored, only its presence is checked).
    24