[Python] 255 try文で例外の内容を出力する

よく使うのでメモ書き。

# url取得時の例外処理および内容出力
try:
    driver.get(url)
except Exception as e:
    print(e)
    break
else:
    time.sleep(1)