110 references to ErrorUtilities
MSBuildTaskHost (110)
AssemblyLoadInfo.cs (4)
27
ErrorUtilities
.VerifyThrow((!string.IsNullOrEmpty(assemblyName)) || (!string.IsNullOrEmpty(assemblyFile)),
29
ErrorUtilities
.VerifyThrow((assemblyName == null) || (assemblyFile == null),
102
ErrorUtilities
.VerifyThrow(translator.Mode == TranslationDirection.WriteToStream, "write only");
179
ErrorUtilities
.VerifyThrow(Path.IsPathRooted(assemblyFile), "Assembly file path should be rooted");
AssemblyNameExtension.cs (3)
327
ErrorUtilities
.VerifyThrow(!immutable, "Object is immutable cannot replace the version");
384
ErrorUtilities
.VerifyThrow(extensionToAdd.Immutable, "ExtensionToAdd is not immutable");
515
ErrorUtilities
.VerifyThrow(result == baselineResult, "Optimized version of CompareBaseNameTo didn't return the same result as the baseline.");
AssemblyResources.cs (1)
32
ErrorUtilities
.VerifyThrow(resource != null, "Missing resource '{0}'", name);
CommunicationsUtilities.cs (5)
472
ErrorUtilities
.VerifyThrow(bytes.Length == 4, "Int should be 4 bytes");
628
ErrorUtilities
.VerifyThrow(taskHostParameters.TryGetValue(XMakeAttributes.runtime, out string runtimeVersion), "Should always have an explicit runtime when we call this method.");
629
ErrorUtilities
.VerifyThrow(taskHostParameters.TryGetValue(XMakeAttributes.architecture, out string architecture), "Should always have an explicit architecture when we call this method.");
645
ErrorUtilities
.ThrowInternalErrorUnreachable();
679
ErrorUtilities
.ThrowInternalErrorUnreachable();
FileSystem\MSBuildTaskHostFileSystem.cs (1)
73
ErrorUtilities
.VerifyThrow(searchOption == SearchOption.TopDirectoryOnly, $"In net20 {nameof(Directory.GetFileSystemEntries)} does not take a {nameof(SearchOption)} parameter");
FileUtilities.cs (8)
204
ErrorUtilities
.ThrowArgument("DebugPathTooLong", directory);
485
ErrorUtilities
.VerifyThrowArgumentLength(path);
1168
ErrorUtilities
.VerifyThrowArgumentNull(basePath);
1169
ErrorUtilities
.VerifyThrowArgumentLength(path);
1177
ErrorUtilities
.VerifyThrow(splitPath.Length > 0, "Cannot call MakeRelative on a path of only slashes.");
1306
ErrorUtilities
.VerifyThrowArgumentNull(root);
1307
ErrorUtilities
.VerifyThrowArgumentNull(paths);
1517
ErrorUtilities
.ThrowArgument("InvalidGetPathOfFileAboveParameter", file);
InterningBinaryReader.cs (3)
14
using ErrorUtilities = Microsoft.Build.Shared.
ErrorUtilities
;
126
ErrorUtilities
.ThrowInternalError("From calculating based on the memorystream, about to read n = {0}. length = {1}, rawPosition = {2}, readLength = {3}, stringLength = {4}, currPos = {5}.", n, length, rawPosition, readLength, stringLength, currPos);
141
ErrorUtilities
.ThrowInternalError("From getting the length out of BaseStream.Read directly, about to read n = {0}. readLength = {1}, stringLength = {2}, currPos = {3}", n, readLength, stringLength, currPos);
LoadedType.cs (3)
31
ErrorUtilities
.VerifyThrow(type != null, "We must have the type.");
32
ErrorUtilities
.VerifyThrow(assemblyLoadInfo != null, "We must have the assembly the type was loaded from.");
33
ErrorUtilities
.VerifyThrow(loadedAssembly is not null, "The assembly should always be loaded even if only by MetadataLoadContext.");
LogMessagePacketBase.cs (5)
313
ErrorUtilities
.VerifyThrow(nodeBuildEvent != null, "nodeBuildEvent was null");
410
ErrorUtilities
.VerifyThrow(_eventType != LoggingEventType.CustomEvent, "_eventType should not be a custom event");
465
ErrorUtilities
.VerifyThrow(_eventType != LoggingEventType.CustomEvent, "_eventType should not be a custom event");
508
ErrorUtilities
.VerifyThrow(_buildEvent is not null, "Not Supported LoggingEventType {0}", _eventType.ToString());
842
ErrorUtilities
.ThrowInternalError("Not Supported LoggingEventType {0}", eventType.ToString());
Modifiers.cs (8)
385
ErrorUtilities
.VerifyThrow(itemSpec != null, "Need item-spec to modify.");
386
ErrorUtilities
.VerifyThrow(modifier != null, "Need modifier to apply to item-spec.");
417
ErrorUtilities
.VerifyThrow(FileUtilitiesRegex.StartsWithUncPattern(modifiedItemSpec),
478
ErrorUtilities
.VerifyThrow((modifiedItemSpec.Length > length) && IsSlash(modifiedItemSpec[length]),
486
ErrorUtilities
.VerifyThrow(!string.IsNullOrEmpty(modifiedItemSpec) && IsSlash(modifiedItemSpec[0]),
588
ErrorUtilities
.ThrowInternalError("\"{0}\" is not a valid item-spec modifier.", modifier);
597
ErrorUtilities
.ThrowInternalError("\"{0}\" is not a valid item-spec modifier.", modifier);
602
ErrorUtilities
.ThrowInvalidOperation("Shared.InvalidFilespecForTransform", modifier, itemSpec, e.Message);
NamedPipeUtil.cs (1)
36
ErrorUtilities
.ThrowInternalError("Task host used on unix in retrieving the pipe name.");
NodeEndpointOutOfProcBase.cs (9)
155
ErrorUtilities
.VerifyThrow(_status == LinkStatus.Inactive, "Link not inactive. Status is {0}", _status);
156
ErrorUtilities
.VerifyThrowArgumentNull(factory, nameof(factory));
168
ErrorUtilities
.ThrowInternalError("Connect() not valid on the out of proc endpoint.");
274
ErrorUtilities
.VerifyThrow(_status != newStatus, "Attempting to change status to existing status {0}.", _status);
297
ErrorUtilities
.VerifyThrow(_packetPump.ManagedThreadId != Thread.CurrentThread.ManagedThreadId, "Can't join on the same thread.");
318
ErrorUtilities
.VerifyThrowArgumentNull(packet, nameof(packet));
319
ErrorUtilities
.VerifyThrow(_packetQueue != null, "packetQueue is null");
320
ErrorUtilities
.VerifyThrow(_packetAvailable != null, "packetAvailable is null");
683
ErrorUtilities
.ThrowInternalError("waitId {0} out of range.", waitId);
NodePacketFactory.cs (3)
55
ErrorUtilities
.ThrowInternalError("No packet handler for type {0}", packetType);
70
ErrorUtilities
.ThrowInternalError("No packet handler for type {0}", packetType);
84
ErrorUtilities
.ThrowInternalError("No packet handler for type {0}", packet.Type);
OutOfProcTaskHost.cs (1)
127
ErrorUtilities
.ThrowInternalErrorUnreachable();
OutOfProcTaskHostNode.cs (13)
216
ErrorUtilities
.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!");
228
ErrorUtilities
.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!");
240
ErrorUtilities
.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!");
252
ErrorUtilities
.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!");
731
ErrorUtilities
.VerifyThrow(!_isTaskExecuting, "Why are we getting a TaskHostConfiguration packet while we're still executing a task?");
745
ErrorUtilities
.VerifyThrow(!_isTaskExecuting, "The task should be done executing before CompleteTask.");
752
ErrorUtilities
.VerifyThrowInternalNull(_taskCompletePacket, "taskCompletePacket");
807
ErrorUtilities
.VerifyThrow(!_isTaskExecuting, "We should never have a task in the process of executing when we receive NodeBuildComplete.");
1026
ErrorUtilities
.VerifyThrowInternalNull(s_mismatchedEnvironmentValues, "mismatchedEnvironmentValues");
1089
ErrorUtilities
.VerifyThrowInternalNull(s_mismatchedEnvironmentValues, "mismatchedEnvironmentValues");
1217
ErrorUtilities
.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration when we're trying to log messages!");
1234
ErrorUtilities
.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration when we're trying to log warnings!");
1257
ErrorUtilities
.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration when we're trying to log errors!");
OutOfProcTaskHostTaskResult.cs (3)
65
ErrorUtilities
.VerifyThrowInternalNull(taskException);
70
ErrorUtilities
.VerifyThrow(
79
ErrorUtilities
.VerifyThrow(exceptionMessage != null, "If we have message args, we need a message.");
ReadOnlyEmptyCollection.cs (3)
87
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
95
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
118
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
ReadOnlyEmptyDictionary.cs (6)
176
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
185
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
201
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
219
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
227
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
250
ErrorUtilities
.ThrowInvalidOperation("OM_NotSupportedReadOnlyCollection");
ResourceUtilities.cs (6)
42
ErrorUtilities
.VerifyThrowInternalNull(message);
438
ErrorUtilities
.ThrowInternalError(
464
ErrorUtilities
.ThrowInternalError("The resource string \"" + resourceName + "\" was not found.");
472
ErrorUtilities
.ThrowInternalError(e.Message);
479
ErrorUtilities
.ThrowInternalError(e.Message);
486
ErrorUtilities
.ThrowInternalError(e.Message);
TaskHostConfiguration.cs (2)
165
ErrorUtilities
.VerifyThrowInternalLength(taskName, nameof(taskName));
166
ErrorUtilities
.VerifyThrowInternalLength(taskLocation, nameof(taskLocation));
TaskHostTaskComplete.cs (1)
108
ErrorUtilities
.VerifyThrowInternalNull(result);
TaskParameter.cs (13)
113
ErrorUtilities
.VerifyThrow(
150
ErrorUtilities
.ThrowInternalErrorUnreachable();
185
ErrorUtilities
.ThrowInternalErrorUnreachable();
256
ErrorUtilities
.ThrowInternalErrorUnreachable();
394
ErrorUtilities
.VerifyThrow(translator.Mode == TranslationDirection.WriteToStream, "Cannot call this method when reading!");
461
ErrorUtilities
.VerifyThrow(translator.Mode == TranslationDirection.ReadFromStream, "Cannot call this method when writing!");
755
ErrorUtilities
.VerifyThrowInternalNull(escapedItemSpec);
846
ErrorUtilities
.VerifyThrowArgumentLength(metadataName);
850
ErrorUtilities
.VerifyThrowArgument(!FileUtilities.ItemSpecModifiers.IsDerivableItemSpecModifier(metadataName), "Shared.CannotChangeItemSpecModifiers", metadataName);
863
ErrorUtilities
.VerifyThrowArgumentNull(metadataName);
864
ErrorUtilities
.VerifyThrowArgument(!FileUtilities.ItemSpecModifiers.IsItemSpecModifier(metadataName), "Shared.CannotChangeItemSpecModifiers", metadataName);
886
ErrorUtilities
.VerifyThrowArgumentNull(destinationItem);
953
ErrorUtilities
.VerifyThrowArgumentNull(metadataName);
TypeLoader.cs (4)
40
ErrorUtilities
.VerifyThrow(isDesiredType != null, "need a type filter");
223
ErrorUtilities
.VerifyThrowArgumentNull(typeFilter, "typefilter");
224
ErrorUtilities
.VerifyThrowArgumentNull(loadInfo);
237
ErrorUtilities
.VerifyThrowArgumentNull(typeName);
XMakeAttributes.cs (4)
170
ErrorUtilities
.VerifyThrow(runtimeA != String.Empty && runtimeB != String.Empty, "We should never get an empty string passed to this method");
214
ErrorUtilities
.VerifyThrow(runtimeA != String.Empty && runtimeB != String.Empty, "We should never get an empty string passed to this method");
287
ErrorUtilities
.VerifyThrow(architectureA != String.Empty && architectureB != String.Empty, "We should never get an empty string passed to this method");
354
ErrorUtilities
.VerifyThrow(architectureA != String.Empty && architectureB != String.Empty, "We should never get an empty string passed to this method");