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