public function removeUsuario($idUsuario) { try { $ctrl = new UsuarioController($this->persistenceManager); $ctrl->removeUsuario($idUsuario); $cm = new CommunicationMensaje(true, SALAS_COMP_ALERT_A_OPERATION_SUCCESS, $this->ID + 155); return $cm; } catch (Exception $e) { return new CommunicationMensaje(false, $e->getMessage(), $this->ID + 156 . "->" . $e->getCode()); } }