diff options
Diffstat (limited to 'src/WixToolset.Core/Linker.cs')
-rw-r--r-- | src/WixToolset.Core/Linker.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Core/Linker.cs b/src/WixToolset.Core/Linker.cs index 80d57fa7..9b32ad1d 100644 --- a/src/WixToolset.Core/Linker.cs +++ b/src/WixToolset.Core/Linker.cs | |||
@@ -1229,7 +1229,7 @@ namespace WixToolset.Core | |||
1229 | break; | 1229 | break; |
1230 | 1230 | ||
1231 | default: | 1231 | default: |
1232 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, WixStrings.EXP_UnexpectedComplexReferenceChildType, Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); | 1232 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, "Unexpected complex reference child type: {0}", Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); |
1233 | } | 1233 | } |
1234 | break; | 1234 | break; |
1235 | 1235 | ||
@@ -1260,7 +1260,7 @@ namespace WixToolset.Core | |||
1260 | break; | 1260 | break; |
1261 | 1261 | ||
1262 | default: | 1262 | default: |
1263 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, WixStrings.EXP_UnexpectedComplexReferenceChildType, Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); | 1263 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, "Unexpected complex reference child type: {0}", Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); |
1264 | } | 1264 | } |
1265 | break; | 1265 | break; |
1266 | 1266 | ||
@@ -1272,7 +1272,7 @@ namespace WixToolset.Core | |||
1272 | break; | 1272 | break; |
1273 | 1273 | ||
1274 | default: | 1274 | default: |
1275 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, WixStrings.EXP_UnexpectedComplexReferenceChildType, Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); | 1275 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, "Unexpected complex reference child type: {0}", Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); |
1276 | } | 1276 | } |
1277 | break; | 1277 | break; |
1278 | 1278 | ||
@@ -1291,13 +1291,13 @@ namespace WixToolset.Core | |||
1291 | break; | 1291 | break; |
1292 | 1292 | ||
1293 | default: | 1293 | default: |
1294 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, WixStrings.EXP_UnexpectedComplexReferenceChildType, Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); | 1294 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, "Unexpected complex reference child type: {0}", Enum.GetName(typeof(ComplexReferenceChildType), wixComplexReferenceRow.ChildType))); |
1295 | } | 1295 | } |
1296 | break; | 1296 | break; |
1297 | 1297 | ||
1298 | default: | 1298 | default: |
1299 | // Note: Groups have been processed before getting here so they are not handled by any case above. | 1299 | // Note: Groups have been processed before getting here so they are not handled by any case above. |
1300 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, WixStrings.EXP_UnexpectedComplexReferenceChildType, Enum.GetName(typeof(ComplexReferenceParentType), wixComplexReferenceRow.ParentType))); | 1300 | throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, "Unexpected complex reference child type: {0}", Enum.GetName(typeof(ComplexReferenceParentType), wixComplexReferenceRow.ParentType))); |
1301 | } | 1301 | } |
1302 | } | 1302 | } |
1303 | 1303 | ||