/** {@inheritDoc} */
  @Override
  public void storeQueueInformation(String queueName, String queueInfo) throws AndesException {
    try {
      wrappedAndesContextStoreInstance.storeQueueInformation(queueName, queueInfo);

    } catch (AndesStoreUnavailableException exception) {
      notifyFailures(exception);
      throw exception;
    }
  }