mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-14 03:47:43 +01:00
ugh
This commit is contained in:
parent
ac80895f43
commit
b5f1084f73
6 changed files with 109 additions and 46 deletions
|
|
@ -23,9 +23,13 @@ namespace Dalamud.Bootstrap.Windows
|
|||
internal static void ThrowLastOsError(uint pid)
|
||||
{
|
||||
var inner = new Win32Exception();
|
||||
throw new ProcessException(inner.ToString(), pid, inner);
|
||||
}
|
||||
|
||||
const string message = "";
|
||||
throw new ProcessException(message, pid, inner);
|
||||
internal static void ThrowLastOsError(string message)
|
||||
{
|
||||
var inner = new Win32Exception();
|
||||
throw new ProcessException(message, inner);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue