aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)