Hi,

Clement wrote I should try:
Except Exception, e:
   print str(e)

But this only showed me, that apparently the ErrCode is not accessible in Python. e was an empty string :/
don't think so.

If you write

except ErrorCodeIOException, e:
        print str(e)

e can't be an empty string, because e must be an instance of ErrorCodeIOException or a derived class, otherwise the except cannot succeed. Please check this again.

Bye,

Joerg

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to