persistence/Persistence.Client/CustomExceptions/LockedException.cs

11 lines
213 B
C#

namespace Persistence.Client.CustomExceptions;
/// <summary>
/// Locked (423)
/// </summary>
public class LockedException : Exception
{
public LockedException(string message)
: base(message) { }
}