private void executeRunnable()

in src/main/java/com/epam/digital/data/platform/integration/ceph/service/impl/CephServiceS3Impl.java [267:273]


  private void executeRunnable(Runnable runnable) {
    try {
      runnable.run();
    } catch (RuntimeException exception) {
      throw new CephCommunicationException(exception.getMessage(), exception);
    }
  }