/** {@inheritDoc} */
 @Override
 public void incrementMessageCountForQueue(String destinationQueueName, long incrementBy)
     throws AndesException {
   try {
     wrappedAndesContextStoreInstance.incrementMessageCountForQueue(
         destinationQueueName, incrementBy);
   } catch (AndesStoreUnavailableException exception) {
     notifyFailures(exception);
     throw exception;
   }
 }