in src/java/org/apache/fulcrum/parser/DataStreamParser.java [271:287]
public ValueParser next()
throws NoSuchElementException
{
ValueParser nextRow = null;
try
{
nextRow = nextRow();
}
catch (IOException e)
{
log.error("IOException in CSVParser.next", e);
throw new NoSuchElementException();
}
return nextRow;
}