class ExceptionHandler(pykd.eventHandler):
def onException(self, exceptInfo):
if exceptInfo.FirstChance:
print "fisrt chance"
return
print "Second chance" # never displayed!!!
Comments: ** Comment from web user: kernelnet **
def onException(self, exceptInfo):
if exceptInfo.FirstChance:
print "fisrt chance"
return
print "Second chance" # never displayed!!!
Comments: ** Comment from web user: kernelnet **
CL 84627