サーバーに接続していくつかのコマンドを送信するPythonプログラムがありますが、時々このエラーが発生します
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
このような以前の状況では、このようなものを使用します
try:
do something
except KeyError:
do something else
この同じ状況で同じことをすることができますか?
try:
do something
except TimeoutError:
do something again
もしそうなら、Exception TimeoutError 以外の後に私は何をしますか? 同じコマンドをもう一度実行しますか?