/**
  * Adds warning (block) alert to session flash bag
  *
  * @param string $message
  */
 public function addWarning($message)
 {
     $this->alertManager->addAlert(new Alert(AlertInterface::WARNING_ALERT, $message));
 }