I am having trouble parsing the following date into a LocalDate object.
2017-11-10T14:17:38.611+0000
I tried the following:
LocalDate date = LocalDate.parse(markitDate, DateTimeFormatter.BASIC_ISO_DATE)
but, I get an error that the letter T cannot be parsed.