aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/UtilErrors.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/UtilErrors.cs')
-rw-r--r--src/wixext/UtilErrors.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wixext/UtilErrors.cs b/src/wixext/UtilErrors.cs
index 988b8321..c04f0449 100644
--- a/src/wixext/UtilErrors.cs
+++ b/src/wixext/UtilErrors.cs
@@ -13,11 +13,6 @@ namespace WixToolset.Util
13 return Message(null, Ids.ArgumentRequiresValue, "The argument '{0}' does not have a value specified and it is required.", argument); 13 return Message(null, Ids.ArgumentRequiresValue, "The argument '{0}' does not have a value specified and it is required.", argument);
14 } 14 }
15 15
16 public static Message CircularSearchReference(string chain)
17 {
18 return Message(null, Ids.CircularSearchReference, "A circular reference of search ordering constraints was detected: {0}. Search ordering references must form a directed acyclic graph.", chain);
19 }
20
21 public static Message DirectoryNotFound(string directory) 16 public static Message DirectoryNotFound(string directory)
22 { 17 {
23 return Message(null, Ids.DirectoryNotFound, "The directory '{0}' could not be found.", directory); 18 return Message(null, Ids.DirectoryNotFound, "The directory '{0}' could not be found.", directory);
@@ -102,7 +97,6 @@ namespace WixToolset.Util
102 FileNotFound = 5059, 97 FileNotFound = 5059,
103 PerformanceCategoryNotFound = 5060, 98 PerformanceCategoryNotFound = 5060,
104 UnsupportedPerformanceCounterType = 5061, 99 UnsupportedPerformanceCounterType = 5061,
105 CircularSearchReference = 5062,
106 InvalidRegistryObject = 5063, 100 InvalidRegistryObject = 5063,
107 } 101 }
108 } 102 }