Show
Ignore:
Timestamp:
06/11/04 10:16:03 (20 years ago)
Author:
jalet
Message:

More exceptions catched in case of very early failure.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/tool.py

    r1537 r1538  
    2222# 
    2323# $Log$ 
     24# Revision 1.100  2004/06/11 08:16:03  jalet 
     25# More exceptions catched in case of very early failure. 
     26# 
    2427# Revision 1.99  2004/06/11 07:07:38  jalet 
    2528# Now detects and logs configuration syntax errors instead of failing without 
     
    873876            self.username = self.username.lower() 
    874877        self.preserveinputfile = self.inputfile  
    875         self.accounter = accounter.openAccounter(self) 
     878        try : 
     879            self.accounter = accounter.openAccounter(self) 
     880        except accounter.PyKotaAccounterError, msg :     
     881            self.crashed(msg) 
     882            raise 
    876883        self.exportJobInfo() 
    877884        self.jobdatastream = self.openJobDataStream()