private void controlNombre() throws DataErrorException {
   if (!Utils.tieneSoloLetrasString(persona.getNombre())) {
     throw new InvalidValueException(
         FichaMedicaConsts.DATA_NOMBRE, "En nombre solo puede contener letras.");
   }
 }