6 lines
193 B
C#
6 lines
193 B
C#
namespace SoftBedContracts.Exceptions;
|
|
|
|
public class ElementDeletedException : Exception
|
|
{
|
|
public ElementDeletedException(string id) : base($"Cannot modify a deleted item (id: {id})") { }
|
|
} |