Files
Pibd-21_Semin_D.A._SmallSof…/SmallSoftwareProject/SmallSoftwareContracts/Exceptions/ElementDeletedException.cs
2025-03-12 19:36:30 +04:00

6 lines
202 B
C#

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