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