mirror of
https://github.com/LANCommander/LANCommander.Interposer.git
synced 2026-08-01 03:08:17 -04:00
14 lines
385 B
C#
14 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) { }
|
||
|
|
}
|
||
|
|
}
|