I want to save name of the error and the traceback details into a variable..
import sys
try:
try:
print x
except Exception, ex:
raise NameError
except Exception, er:
print "0", sys.exc_info()[0]
print "1", sys.exc_info()[1]
print "2", sys.exc_info()[2]
Output Getting:
0 <type 'exceptions.NameError'>
1
2 <traceback object at 0xbd5fc8>
Output Wanted:
0 NameError
1
2 Traceback (most recent call last):
File "exception.py", line 6, in <module>
raise NameError
Help..
p,s,: I know this can be done easily using traceback module, but I want to know usage of sys.exc_info()[2] object here ..
