python-2.5

How do I print Python 2.5 Exception arguments?

Does python 2.5 allow you to pass exception arguments? try: raise Exception("argument here") except Exception: print Exception.args I've had no luck with the above code - I know this is how you do it in Python 2.7 - is this not in Python 2.5? ...