aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
index 1a77b84e..3ab3b601 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
@@ -334,10 +334,10 @@ namespace WixToolset.Core.WindowsInstaller.Bind
334 db.Commit(); 334 db.Commit();
335 } 335 }
336 } 336 }
337 catch (IOException) 337 catch (IOException e)
338 { 338 {
339 // TODO: this error message doesn't seem specific enough 339 // TODO: this error message doesn't seem specific enough
340 throw new WixFileNotFoundException(new SourceLineNumber(this.OutputPath), this.OutputPath); 340 throw new WixException(ErrorMessages.FileNotFound(new SourceLineNumber(this.OutputPath), this.OutputPath), e);
341 } 341 }
342 } 342 }
343 343