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

FacilityException

public class FacilityException : Exception
Base exception to be used by facilities.
using Castle.Core.Internal; using System; namespace Castle.MicroKernel.Facilities { [Serializable] public class FacilityException : Exception { public FacilityException(string message) : base(message) { this.SetUp(); } public FacilityException(string message, Exception innerException) : base(message, innerException) { this.SetUp(); } } }