/**
  * @param UniqueConstraintViolationException $ex
  */
 private function setErrorFlashMessage(UniqueConstraintViolationException $ex)
 {
     switch ($ex->getErrorCode()) {
         case 7:
             $this->addFlash('error', 'Username already exists');
             break;
         default:
             $this->addFlash('error', 'Some error occurred during writing to database');
     }
 }