namespace Unity.Services.Core.Internal { /// /// Exception to use two registered depend on the other. /// public class CircularDependencyException : ServicesInitializationException { /// /// Initialize a new instance of the class. /// public CircularDependencyException() {} /// /// Initialize a new instance of the /// class with a specified error message. /// /// /// The error message that explains the reason for the exception. /// public CircularDependencyException(string message) : base(message) {} } }