Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:11

0001 class AllInOneError(Exception):
0002     def __init__(self, msg):
0003         Exception.__init__(self, msg)
0004         self._msg = msg
0005         return
0006 
0007     def __str__(self):
0008         return self._msg