ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/crab_exceptions.py
Revision: 1.1
Committed: Thu Mar 10 16:20:30 2005 UTC (20 years, 1 month ago) by nsmirnov
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_1_0_0_pre1
Log Message:
initial set of files

File Contents

# User Rev Content
1 nsmirnov 1.1 class CrabException(Exception):
2     def __init__(self, msg):
3     self._msg = msg
4     return
5    
6     def __str__(self):
7     return self._msg