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

Jean-Noel Rouvignac
18.52.2015 58e42cdaa28e32c1225deda4cfeab261d7156496
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryContainer.java
@@ -1532,17 +1532,9 @@
              entryCache.putEntry(entry, backend, entryID.longValue());
            }
          }
          catch (StorageRuntimeException StorageRuntimeException)
          catch (StorageRuntimeException | DirectoryException | CanceledOperationException e)
          {
            throw StorageRuntimeException;
          }
          catch (DirectoryException directoryException)
          {
            throw directoryException;
          }
          catch (CanceledOperationException coe)
          {
            throw coe;
            throw e;
          }
          catch (Exception e)
          {
@@ -1696,17 +1688,9 @@
                  subordinateEntriesDeleted + 1));
            }
          }
          catch (StorageRuntimeException StorageRuntimeException)
          catch (StorageRuntimeException | DirectoryException | CanceledOperationException e)
          {
            throw StorageRuntimeException;
          }
          catch (DirectoryException directoryException)
          {
            throw directoryException;
          }
          catch (CanceledOperationException coe)
          {
            throw coe;
            throw e;
          }
          catch (Exception e)
          {
@@ -2004,17 +1988,9 @@
              entryCache.putEntry(newEntry, backend, entryID.longValue());
            }
          }
          catch (StorageRuntimeException StorageRuntimeException)
          catch (StorageRuntimeException | DirectoryException | CanceledOperationException e)
          {
            throw StorageRuntimeException;
          }
          catch (DirectoryException directoryException)
          {
            throw directoryException;
          }
          catch (CanceledOperationException coe)
          {
            throw coe;
            throw e;
          }
          catch (Exception e)
          {
@@ -2230,17 +2206,9 @@
              modifyDNOperation.checkIfCanceled(true);
            }
          }
          catch (StorageRuntimeException StorageRuntimeException)
          catch (StorageRuntimeException | DirectoryException | CanceledOperationException e)
          {
            throw StorageRuntimeException;
          }
          catch (DirectoryException directoryException)
          {
            throw directoryException;
          }
          catch (CanceledOperationException coe)
          {
            throw coe;
            throw e;
          }
          catch (Exception e)
          {