source:
people/peter.buschman/backup_monitoring/backmon/lib/exceptions.py@
976
Last change on this file since 976 was 976, checked in by , on Dec 6, 2011 at 10:19:33 AM | |
---|---|
File size: 340 bytes |
Line | |
---|---|
1 | ### |
2 | ### backmon - Library |
3 | ### |
4 | import os |
5 | import os.path |
6 | import time |
7 | |
8 | ## |
9 | ## BackmonError |
10 | ## |
11 | class BackmonError(StandardError): |
12 | pass |
13 | |
14 | # |
15 | # BackmonError |
16 | # |
17 | #class BackmonError(Exception): |
18 | # |
19 | # def __init__(self, value): |
20 | # self.parameter = value |
21 | # |
22 | # def __str__(self): |
23 | # return repr(self.parameter) |
24 |
Note:
See TracBrowser
for help on using the repository browser.