private CSVRecord getNextRecord()

in src/main/java/org/apache/commons/csv/CSVParser.java [146:152]


        private CSVRecord getNextRecord() {
            try {
                return CSVParser.this.nextRecord();
            } catch (final IOException e) {
                throw new UncheckedIOException(e.getClass().getSimpleName() + " reading next record: " + e.toString(), e);
            }
        }