I'm using SuperCSV in java to read a csv file. I have a column containing dates but the records may not be populated so I set it to optional. In my CellProcessor I define the field as
...,
new Optional(new ParseDate("MM/dd/yyyy",true)),
...
When ParseDate encounters an empty cell it returns "...SuperCsvCellProcessorException:' ' could not be parsed as a Date."
How do I continue processing the parseDate in this situation?