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

TimeoutRejectedException

Exception thrown when a delegate executed through a TimeoutPolicy does not complete, before the configured timeout.
using System; namespace Polly.Timeout { public class TimeoutRejectedException : ExecutionRejectedException { public TimeoutRejectedException() { } public TimeoutRejectedException(string message) : base(message) { } public TimeoutRejectedException(string message, Exception innerException) : base(message, innerException) { } } }