aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-11-21 15:22:22 -0800
committerRob Mensching <rob@firegiant.com>2022-11-21 16:35:10 -0800
commitbba081396ac7e21cc9445d03105199e99989451e (patch)
tree71576b6f0c0cf4e545040d8738e815817e4cd99e /src
parentaff110bd5c4d1637f5f1698837bfbdab036b435a (diff)
downloadwix-bba081396ac7e21cc9445d03105199e99989451e.tar.gz
wix-bba081396ac7e21cc9445d03105199e99989451e.tar.bz2
wix-bba081396ac7e21cc9445d03105199e99989451e.zip
Remove outdated error details about error 217
Fixes 6449
Diffstat (limited to 'src')
-rw-r--r--src/api/wix/WixToolset.Data/ErrorMessages.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs
index 070abd69..b344a981 100644
--- a/src/api/wix/WixToolset.Data/ErrorMessages.cs
+++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs
@@ -2048,12 +2048,12 @@ namespace WixToolset.Data
2048 2048
2049 public static Message UnexpectedExternalUIMessage(string message) 2049 public static Message UnexpectedExternalUIMessage(string message)
2050 { 2050 {
2051 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing unknown ICE action. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See https://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message); 2051 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing unknown ICE action. The following string format was not expected by the external UI message logger: \"{0}\".", message);
2052 } 2052 }
2053 2053
2054 public static Message UnexpectedExternalUIMessage(string message, string action) 2054 public static Message UnexpectedExternalUIMessage(string message, string action)
2055 { 2055 {
2056 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing ICE action '{1}'. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See https://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message, action); 2056 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing ICE action '{1}'. The following string format was not expected by the external UI message logger: \"{0}\".", message, action);
2057 } 2057 }
2058 2058
2059 public static Message UnexpectedFileExtension(string fileName, string expectedExtensions) 2059 public static Message UnexpectedFileExtension(string fileName, string expectedExtensions)