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