Catch UnlockCancelled exception during unlock of health check

This commit is contained in:
Armin Schrenk
2021-07-26 12:41:48 +02:00
parent 65b4fef7e8
commit d2a3ce2474

View File

@@ -74,7 +74,7 @@ public class StartController implements FxController {
assert unverifiedVaultConfig.get() != null;
try {
keyLoadingStrategy.use(this::verifyVaultConfig);
} catch (VaultConfigLoadException e) {
} catch (VaultConfigLoadException | UnlockCancelledException e) {
throw new LoadingFailedException(e);
}
}