root/galaxy-central/eggs/Beaker-1.4-py2.6.egg/beaker/exceptions.py
リビジョン 3, 474 bytes (コミッタ: kohda, 14 年 前) |
---|
行番号 | |
---|---|
1 | """Beaker exception classes""" |
2 | |
3 | class BeakerException(Exception): |
4 | pass |
5 | |
6 | |
7 | class CreationAbortedError(Exception): |
8 | """deprecated.""" |
9 | |
10 | class InvalidCacheBackendError(BeakerException, ImportError): |
11 | pass |
12 | |
13 | |
14 | class MissingCacheParameter(BeakerException): |
15 | pass |
16 | |
17 | |
18 | class LockError(BeakerException): |
19 | pass |
20 | |
21 | class InvalidCryptoBackendError(BeakerException, ImportError): |
22 | def __init__(self): |
23 | Exception.__init__('No supported crypto implementation was found') |
Note: リポジトリブラウザについてのヘルプは TracBrowser
を参照してください。