10 lines
289 B
C#
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.") { }
|
|
}
|