MalwareSourceCode/MSIL/Virus/Win32/N/Virus.Win32.Nimnul.c-d5c6463b93131b3c485115414cf5809e01323986e3d4274a4868222cbb54aa43/Shared/InternalErrorException.cs

40 lines
1.1 KiB
C#
Raw Normal View History

2022-08-18 11:28:56 +00:00
// Decompiled with JetBrains decompiler
// Type: Microsoft.Build.Shared.InternalErrorException
// Assembly: MSBuild, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// MVID: E42BAB90-704E-4C03-B5C0-D4E3A6B884E3
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00001-msil\Virus.Win32.Nimnul.c-d5c6463b93131b3c485115414cf5809e01323986e3d4274a4868222cbb54aa43.exe
using System;
namespace Microsoft.Build.Shared
{
internal sealed class InternalErrorException : Exception
{
internal InternalErrorException()
{
}
internal InternalErrorException(string message)
: base("Internal MSBuild Error: " + message)
{
this.ShowAssertDialog(true);
}
internal InternalErrorException(string message, bool showAssert)
: base("Internal MSBuild Error: " + message)
{
this.ShowAssertDialog(showAssert);
}
internal InternalErrorException(string message, Exception innerException)
: base("Internal MSBuild Error: " + message, innerException)
{
}
private void ShowAssertDialog(bool showAssert)
{
int num = showAssert ? 1 : 0;
}
}
}