/**
  * Clear and reset slot storage
  *
  * @throws AndesException
  */
 @Override
 public void clearSlotStorage() throws AndesException {
   try {
     wrappedAndesContextStoreInstance.clearSlotStorage();
   } catch (AndesStoreUnavailableException exception) {
     notifyFailures(exception);
     throw exception;
   }
 }