mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-10 01:54:35 +01:00
acl
This commit is contained in:
parent
32af098159
commit
07538a0974
7 changed files with 336 additions and 279 deletions
23
Dalamud.Bootstrap/ProcessException.cs
Normal file
23
Dalamud.Bootstrap/ProcessException.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
|
||||
namespace Dalamud.Bootstrap
|
||||
{
|
||||
public class ProcessException : BootstrapException
|
||||
{
|
||||
internal ProcessException() : base() { }
|
||||
|
||||
internal ProcessException(string message) : base(message) { }
|
||||
|
||||
internal ProcessException(string message, Exception innerException) : base(message, innerException) { }
|
||||
|
||||
internal static void ThrowLastOsError()
|
||||
{
|
||||
var inner = new Win32Exception();
|
||||
|
||||
throw new ProcessException(inner.Message, inner);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue