diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs index 34049dfd..0a356ba9 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs | |||
@@ -88,7 +88,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
88 | } | 88 | } |
89 | else // not a supported unscheduled action. | 89 | else // not a supported unscheduled action. |
90 | { | 90 | { |
91 | throw new InvalidOperationException(WixStrings.EXP_FoundActionRowWithNoSequenceBeforeOrAfterColumnSet); | 91 | throw new InvalidOperationException("Found an ActionRow with no Sequence, Before, or After column set."); |
92 | } | 92 | } |
93 | } | 93 | } |
94 | 94 | ||
@@ -575,7 +575,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
575 | } | 575 | } |
576 | else if (actionRow.Before == null) | 576 | else if (actionRow.Before == null) |
577 | { | 577 | { |
578 | throw new InvalidOperationException(WixStrings.EXP_FoundActionRowWithNoSequenceBeforeOrAfterColumnSet); | 578 | throw new InvalidOperationException("Found an ActionRow with no Sequence, Before, or After column set."); |
579 | } | 579 | } |
580 | 580 | ||
581 | var parentActionName = (after ? actionRow.After : actionRow.Before); | 581 | var parentActionName = (after ? actionRow.After : actionRow.Before); |
@@ -593,7 +593,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
593 | } | 593 | } |
594 | else | 594 | else |
595 | { | 595 | { |
596 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, WixStrings.EXP_FoundActionRowWinNonExistentAction, (after ? "After" : "Before"), parentActionName)); | 596 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, "Found an ActionRow with a non-existent {0} action: {1}.", (after ? "After" : "Before"), parentActionName)); |
597 | } | 597 | } |
598 | } | 598 | } |
599 | else if (actionRow == parentActionRow || this.ContainsChildActionRow(actionRow, parentActionRow)) // cycle detected | 599 | else if (actionRow == parentActionRow || this.ContainsChildActionRow(actionRow, parentActionRow)) // cycle detected |