aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-05-13 14:36:12 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-05-13 15:32:16 +1000
commit61d92179d024a55351903e17ee18a6126ab65f83 (patch)
tree42a3e56e429e1b520f539ea554ed967780246eb1 /src
parentbac3d761d99fb7ae1012f3591baee2dbec115b28 (diff)
downloadwix-61d92179d024a55351903e17ee18a6126ab65f83.tar.gz
wix-61d92179d024a55351903e17ee18a6126ab65f83.tar.bz2
wix-61d92179d024a55351903e17ee18a6126ab65f83.zip
Update CabinetBuilder to send exception to UnexpectedException.
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CabinetBuilder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CabinetBuilder.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CabinetBuilder.cs
index ec4e0818..f70548d9 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CabinetBuilder.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CabinetBuilder.cs
@@ -125,7 +125,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
125 } 125 }
126 catch (Exception e) 126 catch (Exception e)
127 { 127 {
128 this.Messaging.Write(ErrorMessages.UnexpectedException(e.Message, e.GetType().ToString(), e.StackTrace)); 128 this.Messaging.Write(ErrorMessages.UnexpectedException(e));
129 } 129 }
130 } 130 }
131 131