root/galaxy-central/eggs/WebError-0.8a-py2.6.egg/weberror/util/errorapp.py
リビジョン 3, 306 bytes (コミッタ: kohda, 14 年 前) |
---|
行番号 | |
---|---|
1 | """ |
2 | This simple application creates errors |
3 | """ |
4 | |
5 | def error_app(environ, start_response): |
6 | environ['errorapp.item'] = 1 |
7 | raise_error() |
8 | |
9 | def raise_error(): |
10 | if 1 == 1: |
11 | raise Exception('This is an exception') |
12 | else: |
13 | do_stuff() |
14 | |
15 | def make_error_app(global_conf): |
16 | return error_app |
Note: リポジトリブラウザについてのヘルプは TracBrowser
を参照してください。