LockTimeoutException
using System;
using System.Runtime.CompilerServices;
namespace Polly.Utilities
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
internal sealed class LockTimeoutException : Exception
{
public LockTimeoutException()
: base("Timeout waiting for lock")
{
}
public LockTimeoutException(string message)
: base(message)
{
}
public LockTimeoutException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}