2025-03-11 00:13:19 +04:00

6 lines
193 B
C#

namespace SoftBedContracts.Exceptions;
public class ElementDeletedException : Exception
{
public ElementDeletedException(string id) : base($"Cannot modify a deleted item (id: {id})") { }
}