Files
prefab-page-detail/Prefab/Domain/Exceptions/ConcurrencyException.cs
2025-10-27 17:39:18 -04:00

10 lines
289 B
C#

namespace Prefab.Domain.Exceptions;
/// <summary>
/// Thrown when a concurrency conflict is detected.
/// </summary>
public class ConcurrencyException : DomainException
{
public ConcurrencyException() : base("The record you attempted to modify was changed by another process.") { }
}