using System; namespace Dalamud.Injector { /// /// An error that is thrown when injecting Dalamud into the process failed. /// public partial class DalamudLauncherException : Exception { /// /// A target process id that was attempted to. /// 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; } } }