Files
ProektstuZhenechka/TheCatHasPawsProject/CatHasPawsContratcs/Exceptions/ElementDeletedException.cs

6 lines
196 B
C#

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