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