mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
29 lines
828 B
C#
29 lines
828 B
C#
using System;
|
|
|
|
namespace Dalamud.Injector
|
|
{
|
|
/// <summary>
|
|
/// An error that is thrown when injecting Dalamud into the process failed.
|
|
/// </summary>
|
|
public partial class DalamudLauncherException : Exception
|
|
{
|
|
/// <summary>
|
|
/// A target process id that was attempted to.
|
|
/// </summary>
|
|
public uint ProcessId { get; }
|
|
}
|
|
|
|
public partial class DalamudLauncherException
|
|
{
|
|
public DalamudLauncherException() : base() { }
|
|
|
|
public DalamudLauncherException(string message) : base(message) { }
|
|
|
|
public DalamudLauncherException(string message, Exception inner) : base(message, inner) { }
|
|
|
|
public DalamudLauncherException(uint pid, string message, Exception inner) : base(message, inner)
|
|
{
|
|
ProcessId = pid;
|
|
}
|
|
}
|
|
}
|