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})") { } }