try:
# 処理
except Exception as e:
print (‘=== エラー内容 ===’)
print (‘type:’ + str(type(e)))
print (‘args:’ + str(e.args))
print (‘e:’ + str(e))
Just another WordPress site
try:
# 処理
except Exception as e:
print (‘=== エラー内容 ===’)
print (‘type:’ + str(type(e)))
print (‘args:’ + str(e.args))
print (‘e:’ + str(e))