Skip to content

Commit

Permalink
fix: Improve error message for missing file in ReadCsvInput method
Browse files Browse the repository at this point in the history
  • Loading branch information
Eyap53 committed Dec 2, 2024
1 parent 1b490ba commit 818acdf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static T[] ReadCsvInput<T>(string filePath, ClassMap map = null)
}
if (!File.Exists(filePath))
{
throw new ArgumentException($"File does not exist at '{nameof(filePath)}'.", nameof(filePath));
throw new ArgumentException($"File does not exist at '{filePath}'.", nameof(filePath));
}

T[] result;
Expand Down

0 comments on commit 818acdf

Please sign in to comment.