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

boli
17.58.2006 5ba5a21b17c663c137efec84151e07821e9db14e
opends/src/server/org/opends/server/backends/jeb/EntryContainer.java
@@ -1265,6 +1265,11 @@
        Container.transactionAbort(txn);
        throw directoryException;
      }
      catch (JebException jebException)
      {
        Container.transactionAbort(txn);
        throw jebException;
      }
      catch (Exception e)
      {
        Container.transactionAbort(txn);
@@ -2246,16 +2251,7 @@
                                                        JebException
    {
      // Read id2entry.
      try
      {
        entry = id2entry.get(txn, entryID);
      }
      catch (JebException e)
      {
        int msgID = MSGID_JEB_ENTRY_DATABASE_CORRUPT;
        String message = getMessage(msgID, entryID.toString());
        throw new JebException(msgID, message);
      }
      entry = id2entry.get(txn, entryID);
    }
    /**