ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/crab_exceptions.py
(Generate patch)

Comparing COMP/CRAB/python/crab_exceptions.py (file contents):
Revision 1.2 by slacapra, Tue Aug 23 10:38:09 2005 UTC vs.
Revision 1.3 by slacapra, Wed Jan 17 18:17:59 2007 UTC

# 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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines