chore: capture missing exception

This commit is contained in:
Matthias
2025-09-23 19:55:18 +02:00
parent 7aab3b34d6
commit 0a0c2adf7d

View File

@@ -473,7 +473,7 @@ class Binance(Exchange):
return delist_schedule
except ccxt.DDoSProtection as e:
raise DDosProtection(e) from e
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
except (ccxt.NetworkError, ccxt.OperationFailed, ccxt.ExchangeError) as e:
raise TemporaryError(
f"Could not get delist schedule {e.__class__.__name__}. Message: {e}"
) from e