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

CircularDependencyException

Exception throw when a circular dependency is detected
using System; using System.Runtime.Serialization; namespace Castle.MicroKernel { [Serializable] public class CircularDependencyException : Exception { public CircularDependencyException() { } public CircularDependencyException(string message) : base(message) { } public CircularDependencyException(string message, Exception innerException) : base(message, innerException) { } protected CircularDependencyException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }