class ExceptionHandler(pykd.eventHandler):
def onException(self, exceptInfo):
if exceptInfo.FirstChance:
print "fisrt chance"
return
print "Second chance" # never displayed!!!
def onException(self, exceptInfo):
if exceptInfo.FirstChance:
print "fisrt chance"
return
print "Second chance" # never displayed!!!