エラーが出た際に、exceptでエラー内容を出力したい
エラーが出た際に、exceptでエラー内容を出力するようにします。
try:
...........................................................
...........................................................
...........................................................
...........................................................
...........................................................
except Exception as e:
// 例外が発生したときに詳細を出力する
print str(type(e))
print str(e.args)
print e.message
print str(e)
上記のようにすることで、エラー内容を出力することができました。