Description: starting from version 2.0 of plexus-cipher, the constructor of
 DefaultPlexusCipher does not throw any exception.
Author: Pierre Gruet <pgt@debian.org>
Bug-Debian: https://bugs.debian.org/1011731
Forwarded: no
Last-Update: 2022-05-26

--- a/src/main/java/capsule/UserSettings.java
+++ b/src/main/java/capsule/UserSettings.java
@@ -178,11 +178,7 @@
         DefaultSecDispatcher secDispatcher = new DefaultSecDispatcher() {
             {
                 _configurationFile = "~/.m2/settings-security.xml";
-                try {
-                    _cipher = new DefaultPlexusCipher();
-                } catch (PlexusCipherException e) {
-                    throw new RuntimeException(e);
-                }
+                _cipher = new DefaultPlexusCipher();
             }
         };
 
