5 instantiations of InternalErrorException
MSBuildTaskHost (5)
BackEnd\LogMessagePacketBase.cs (1)
338
_ => throw new
InternalErrorException
($"Should not get to the default of GetBuildEventArgFromId ID: {_eventType}")
Exceptions\InternalErrorException.cs (1)
40
=>
new
(message, innerException, calledFromDeserialization: true);
Utilities\ErrorUtilities.cs (3)
19
=> throw new
InternalErrorException
(message);
23
=> throw new
InternalErrorException
(string.Format(format, arg0));
32
=> throw new
InternalErrorException
("Unreachable?");
4 references to InternalErrorException
MSBuildTaskHost (4)
Exceptions\BuildExceptionSerializationHelper.cs (2)
13
{ GetSerializationKey<
InternalErrorException
>(),
InternalErrorException
.CreateFromRemote }
Exceptions\InternalErrorException.cs (1)
39
internal static
InternalErrorException
CreateFromRemote(string message, Exception? innerException)
Utilities\ExceptionHandling.cs (1)
55
or
InternalErrorException
;