From 384884ed6f567fba5ee1cf8f5c80479c3e0bde56 Mon Sep 17 00:00:00 2001 From: Olga Khlopkova Date: Tue, 28 Apr 2020 11:25:36 +0300 Subject: [PATCH] more info in error messages --- include/just_gtfs/just_gtfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/just_gtfs/just_gtfs.h b/include/just_gtfs/just_gtfs.h index 85a5835..ed70c87 100644 --- a/include/just_gtfs/just_gtfs.h +++ b/include/just_gtfs/just_gtfs.h @@ -147,11 +147,11 @@ inline Result CsvParser::read_header(const std::string & csv_filename) csv_stream.open(gtfs_path / csv_filename); if (!csv_stream.is_open()) - return {ResultCode::ERROR_FILE_ABSENT, {}}; + return {ResultCode::ERROR_FILE_ABSENT, "File " + csv_filename + "could not be opened"}; std::string header; if (!getline(csv_stream, header) || header.empty()) - return {ResultCode::ERROR_INVALID_FIELD_FORMAT, {}}; + return {ResultCode::ERROR_INVALID_FIELD_FORMAT, "Empty header in file " + csv_filename}; field_sequence = split_record(header, true); return {ResultCode::OK, {}};