/** {@inheritDoc} */
  @Override
  public DurableStoreConnection init(ConfigurationProperties connectionProperties)
      throws AndesException {

    try {
      return wrappedAndesContextStoreInstance.init(connectionProperties);
    } catch (AndesStoreUnavailableException exception) {
      notifyFailures(exception);
      throw exception;
    }
  }