Init
This commit is contained in:
9
Prefab/Domain/Exceptions/ConcurrencyException.cs
Normal file
9
Prefab/Domain/Exceptions/ConcurrencyException.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
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.") { }
|
||||
}
|
||||
Reference in New Issue
Block a user