namespace Umbraco.Cms.Core.DistributedLocking.Exceptions;
///
/// Exception thrown when a write lock could not be obtained in a timely manner.
///
public class DistributedWriteLockTimeoutException : DistributedLockingTimeoutException
{
///
/// Initializes a new instance of the class.
///
public DistributedWriteLockTimeoutException(int lockId)
: base(lockId, true)
{
}
}