Remove outdated error details about error 217
Fixes 6449
Rob Mensching committed
Nov 21, 2022 at 15:22 UTC
bba081396ac7e21cc9445d03105199e99989451e
1 file changed
+2
-2
src/api/wix/WixToolset.Data/ErrorMessages.cs
+2
-2
@@ -2048,12 +2048,12 @@ namespace WixToolset.Data
2048
2049
public static Message UnexpectedExternalUIMessage(string message)
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
}
2053
2054
public static Message UnexpectedExternalUIMessage(string message, string action)
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
}
2058
2059
public static Message UnexpectedFileExtension(string fileName, string expectedExtensions)