Sorry about that. I think that a simpler question would be:<br><br>In my driver code:<br><br>&nbsp; ap = apacheModule.apacheModule(configXML)<br>&nbsp; while 1:  <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try:<br>&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rVs=ap.perf()<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; for anObj in self.objList
:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; getattr(anObj,&quot;do&quot;)(rVs)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; time.sleep(1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; except ArraryOutOfBoundsException:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pass<br>&nbsp; &nbsp; &nbsp;&nbsp; except Exception, e:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sys.stdout.write(str(e) + &quot;\n&quot;)
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sys.exit(1)<br>&nbsp;&nbsp; <br><br>And in my apacheModule class:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (totalAccess,totalTraffic)=(rVs[3][1],self.sizeConvert(rVs[3][3],rVs[3][4]))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (userUsage,sysUsage,cuserUsage,csysUsage,cpuLoad)=(rVs[4][1],rVs[4][2],rVs[4][3],rVs[4][4],rVs[4][6])
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (requestsSec,bandwidth,perRequest)=(rVs[5][0],self.sizeConvert(rVs[5][1],rVs[5][2]),self.sizeConvert(rVs[5][3],rVs[5][4]))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (requestsProc,idle)=(rVs[6][0],rVs[6][1])<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; except Exception,e:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; datetime.datetime.now()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sys.stdout.write(str(e) + &quot;\n&quot;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sys.stdout.write(rVs)<br><br>If the apacheModule comes raises an ArrayOutOfBound exception (don&#39;t remember if that the real exception name), the exception will bubble up, and
<br>the apacheDriver try-except will catch it, right?<br><br>Thanks,<br>Tino<br><br><br>