Files
Check/MagicCarpetProject/MagicCarpetContracts/Exceptions/ElementDeletedException.cs
2025-02-25 14:52:55 +04:00

13 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetContracts.Exceptions;
public class ElementDeletedException : Exception
{
public ElementDeletedException(string id) : base($"Cannot modify a deleted item (id: {id})") { }
}