105106107108109110111112113114
public Wrapper parse() { try { entity = parser.parseLine(line); } catch (Exception e) { Error error = TableRowError.fromException(line, e); errors = ImmutableList.of(error); } return this; }
117118119120121122123124125126
public Wrapper parse() { try { entity = parser.parseLine(sheet, line); } catch (Exception e) { Error error = TableRowError.fromException(line, e); errors = ImmutableList.of(error); } return this; }
112113114115116117118119120121