Skip to content

Commit

Permalink
Small error message fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GregRos committed Dec 30, 2015
1 parent e04ebce commit 373d419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PoEGameInfo/PoEGameInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public override AppInfo CreateInfo(DirectoryInfo folderInfo) {
var fileInfos = folderInfo.GetFiles(exeFileName).ToList();

if (fileInfos.Count == 0) {
throw new FileNotFoundException("The Pillars of Eternity executable file was not found in this directory.", exeFileName);
throw new FileNotFoundException($"The Pillars of Eternity executable file '{exeFileName}' was not found in this directory.", exeFileName);
}
exeFile = fileInfos[0];

Expand Down

0 comments on commit 373d419

Please sign in to comment.