# | Line 1 | Line 1 | |
---|---|---|
1 | class CrabException(Exception): | |
2 | def __init__(self, msg): | |
3 | + | Exception.__init__(self, msg) |
4 | self._msg = msg | |
5 | return | |
6 | ||
# | Line 8 | Line 9 | class CrabException(Exception): | |
9 | ||
10 | class DBException(Exception): | |
11 | def __init__(self, msg): | |
12 | + | Exception.__init__(self, msg) |
13 | self._msg = msg | |
14 | return | |
15 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |