PIbd-31_PotapovNS_COP_20/WinFormSolution/Components/Exceptions/PropertyNotDeclaratedException.cs

8 lines
245 B
C#

namespace Components.Exceptions
{
public class PropertyNotDeclaratedException : UserControlTreeViewException
{
public PropertyNotDeclaratedException(string propName) : base($"Property \"{propName}\" not declared") { }
}
}