mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-22 11:26:11 +00:00
f2ac1ece55
add
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
// 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;
|
|
}
|
|
}
|
|
}
|