2025-02-16 18:01:38 +04:00

12 lines
280 B
C#

namespace TheCyclopsContracts.Exceptions;
public class ElementNotFoundException : Exception
{
public string Value { get; private set; }
public ElementNotFoundException(string value) : base($"Element not found at value = {value}")
{
Value = value;
}
}