add IllegalStateException to the catch clause

This commit is contained in:
Jan-Peter Klein
2025-10-16 15:37:47 +02:00
parent 4bcf01270a
commit ed45182b6c

View File

@@ -166,7 +166,7 @@ public class RecoveryKeyCreationController implements FxController {
} catch (InvalidPassphraseException e) {
LOG.info("Password invalid", e);
Animations.createShakeWindowAnimation(window).play();
} catch (IOException | CryptoException e) {
} catch (IOException | CryptoException | IllegalStateException e) {
LOG.error("Recovery process failed", e);
appWindows.showErrorWindow(e, window, null);
}