From c052303759ee8a4a9945a4bc5a2a2a74476514a0 Mon Sep 17 00:00:00 2001 From: Flor Elisa Chacon Ochoa Date: Thu, 28 Jul 2022 12:21:09 -0700 Subject: [PATCH] Update error constants --- src/AppInstallerCLIE2ETests/Constants.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/AppInstallerCLIE2ETests/Constants.cs b/src/AppInstallerCLIE2ETests/Constants.cs index 1aedd577a6..f0d3eed914 100644 --- a/src/AppInstallerCLIE2ETests/Constants.cs +++ b/src/AppInstallerCLIE2ETests/Constants.cs @@ -180,7 +180,10 @@ public class ErrorCode public const int ERROR_ARP_VERSION_VALIDATION_FAILED = unchecked((int)0x8A150058); public const int ERROR_UNSUPPORTED_ARGUMENT = unchecked((int)0x8A150059); public const int ERROR_BIND_WITH_EMBEDDED_NULL = unchecked((int)0x8A15005A); - public const int ERROR_INSTALL_LOCATION_REQUIRED = unchecked((int)0x8A15005B); + public const int ERROR_NESTEDINSTALLER_NOT_FOUND = unchecked((int)0x8A15005B); + public const int ERROR_EXTRACT_ARCHIVE_FAILED = unchecked((int)0x8A15005C); + public const int ERROR_NESTEDINSTALLER_INVALID_PATH = unchecked((int)0x8A15005D); + public const int ERROR_INSTALL_LOCATION_REQUIRED = unchecked((int)0x8A15005E); public const int ERROR_INSTALL_PACKAGE_IN_USE = unchecked((int)0x8A150101); public const int ERROR_INSTALL_INSTALL_IN_PROGRESS = unchecked((int)0x8A150102);