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.
- Timestamp:
-
Jun 26, 2008, 6:45:57 PM (16 years ago)
- Author:
-
cmlenz
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v2
|
v3
|
|
2 | 2 | |
3 | 3 | Any 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 | |
| 5 | Exceptions that are not instances of the `HTTPException` class are treated as internal errors and result in a `500 Internal Server Error` HTTP response. |
4 | 6 | |
5 | 7 | == Error Page Templates == |
… |
… |
|
13 | 15 | == Error Email Notification == |
14 | 16 | |
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. |
| 17 | If 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. |
16 | 18 | |
17 | 19 | == Developer Error Page == |
… |
… |
|
22 | 24 | |
23 | 25 | If 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 | | |