/**
  * Update assignment information in slot store
  *
  * @param nodeId id of node
  * @param queueName name of queue
  * @param startMsgId start message id of slot
  * @param endMsgId end message id of slot
  * @throws AndesException
  */
 @Override
 public void createSlotAssignment(String nodeId, String queueName, long startMsgId, long endMsgId)
     throws AndesException {
   try {
     wrappedAndesContextStoreInstance.createSlotAssignment(
         nodeId, queueName, startMsgId, endMsgId);
   } catch (AndesStoreUnavailableException exception) {
     notifyFailures(exception);
     throw exception;
   }
 }