mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
18.52.2015 58e42cdaa28e32c1225deda4cfeab261d7156496
opendj-server-legacy/src/main/java/org/opends/server/extensions/DictionaryPasswordValidator.java
@@ -244,14 +244,9 @@
    {
      loadDictionary(configuration);
    }
    catch (ConfigException ce)
    catch (ConfigException | InitializationException e)
    {
      unacceptableReasons.add(ce.getMessageObject());
      return false;
    }
    catch (InitializationException ie)
    {
      unacceptableReasons.add(ie.getMessageObject());
      unacceptableReasons.add(e.getMessageObject());
      return false;
    }
    catch (Exception e)