Exception thrown when a Token is identified to not be completed: a quote is found in an unquoted field, data continues after a closing quote, or the quoted field was not closed before data was empty.
Data pulled from input before finding a problem
import std.exception : assertThrown; string text = "a,\"b,c\nHello,65,2.5"; assertThrown!IncompleteCellException(text.csvReader(["a","b","c"]));
See Implementation
Exception thrown when a Token is identified to not be completed: a quote is found in an unquoted field, data continues after a closing quote, or the quoted field was not closed before data was empty.