If I have that code:
try:
some_method()
except Exception, e:
How can I get this Exception value (string
representation I mean)?
If I have that code:
try:
some_method()
except Exception, e:
How can I get this Exception value (string
representation I mean)?