mirror of
https://github.com/LANCommander/LANCommander.Interposer.git
synced 2026-08-01 03:08:17 -04:00
- Publishes NuGet package with .NET bindings - Allows direct injection - Allows for event subscription - Adds callbacks to main Interposer DLL
13 lines
385 B
C#
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) { }
|
|
}
|
|
}
|