diff --git a/homeassistant/components/overkiz/coordinator.py b/homeassistant/components/overkiz/coordinator.py index 99f791a748a..17b967fc0b9 100644 --- a/homeassistant/components/overkiz/coordinator.py +++ b/homeassistant/components/overkiz/coordinator.py @@ -92,7 +92,7 @@ class OverkizDataUpdateCoordinator(DataUpdateCoordinator[dict[str, Device]]): except (TimeoutError, ClientConnectorError) as exception: LOGGER.debug("Failed to connect", exc_info=True) raise UpdateFailed("Failed to connect.") from exception - except (ServerDisconnectedError, NotAuthenticatedException): + except ServerDisconnectedError: self.executions = {} # During the relogin, similar exceptions can be thrown.