public function notificaciones()
 {
     try {
         if ($this->verificarSession()) {
             $this->vista->set('titulo', 'Difundir Mensaje');
             $notificacion = new Notificacion();
             $noti = $notificacion->leerNotificaciones();
             $this->vista->set('noti', $noti);
             return $this->vista->imprimir();
         }
     } catch (Exception $exc) {
         echo 'Error de aplicacion: ' . $exc->getMessage();
     }
 }