PIbd-31_Putincev.D.M._COP_29/COP/PutincevLibrary/Exceptions/PropertyNotDeclaratedException.cs

8 lines
250 B
C#

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