namespace Umbraco.Cms.Core.DistributedLocking.Exceptions; /// /// Base class for all DistributedLockingExceptions. /// public class DistributedLockingException : ApplicationException { /// /// Initializes a new instance of the class. /// public DistributedLockingException(string message) : base(message) { } /// /// Initializes a new instance of the class. /// // ReSharper disable once UnusedMember.Global public DistributedLockingException(string message, Exception innerException) : base(message, innerException) { } }