IsolatedCircuitException
Exception thrown when a circuit is isolated (held open) by manual override.
            
                using System;
using System.Runtime.CompilerServices;
namespace Polly.CircuitBreaker
{
    [System.Runtime.CompilerServices.NullableContext(1)]
    [System.Runtime.CompilerServices.Nullable(0)]
    public class IsolatedCircuitException : BrokenCircuitException
    {
        public IsolatedCircuitException()
            : base("The circuit is manually held open and is not allowing calls.")
        {
        }
        public IsolatedCircuitException(string message)
            : base(message)
        {
        }
        public IsolatedCircuitException(string message, Exception innerException)
            : base(message, innerException)
        {
        }
    }
}