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