LANCommander.Interposer/LANCommander.Interposer.NET/InjectionException.cs
Pat Hartl 2318fdf611 Add .NET bindings
- Publishes NuGet package with .NET bindings
- Allows direct injection
- Allows for event subscription
- Adds callbacks to main Interposer DLL
2026-05-29 23:31:06 -05:00

13 lines
385 B
C#

using System;
namespace LANCommander.Interposer
{
/// <summary>
/// Thrown when a DLL injection operation fails.
/// </summary>
public class InjectionException : Exception
{
public InjectionException(string message) : base(message) { }
public InjectionException(string message, Exception innerException) : base(message, innerException) { }
}
}