mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-08 08:54:36 +01:00
14 lines
250 B
C#
14 lines
250 B
C#
using System;
|
|
|
|
namespace Dalamud.Injector.Windows
|
|
{
|
|
internal sealed class NtException : Exception
|
|
{
|
|
public NtStatus Status { get; }
|
|
|
|
public NtException(NtStatus status)
|
|
{
|
|
Status = status;
|
|
}
|
|
}
|
|
}
|