12 lines
281 B
C#
12 lines
281 B
C#
namespace DaisiesContracts.Exceptions;
|
|
|
|
public class ElementNotFoundException : Exception
|
|
{
|
|
public string Value { get; private set; }
|
|
|
|
public ElementNotFoundException(string value) : base($"Element not found at value = { value}")
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|