<PackageReference Include="Polly" Version="7.1.1" />

BulkheadRejectedException

Exception thrown when a bulkhead's semaphore and queue are full.
using System; using System.Runtime.Serialization; namespace Polly.Bulkhead { [Serializable] public class BulkheadRejectedException : ExecutionRejectedException { public BulkheadRejectedException() : this("The bulkhead semaphore and queue are full and execution was rejected.") { } public BulkheadRejectedException(string message) : base(message) { } public BulkheadRejectedException(string message, Exception innerException) : base(message, innerException) { } protected BulkheadRejectedException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }