<PackageReference Include="Castle.Windsor" Version="3.1.0" />

HandlerException

public class HandlerException : Exception
Summary description for HandlerException.
using Castle.Core; using Castle.Core.Internal; using System; using System.Runtime.Serialization; namespace Castle.MicroKernel.Handlers { [Serializable] public class HandlerException : Exception { public ComponentName Name { get; set; } public HandlerException(string message, ComponentName name) : base(message) { this.SetUp(); Name = name; } public HandlerException(string message, ComponentName name, Exception innerException) : base(message, innerException) { this.SetUp(); Name = name; } public HandlerException(SerializationInfo info, StreamingContext context) : base(info, context) { this.SetUp(); } } }