8 lines
250 B
C#
8 lines
250 B
C#
namespace PutincevLibrary.Exceptions
|
|
{
|
|
public class PropertyNotDeclaratedException : UserControlTreeViewException
|
|
{
|
|
public PropertyNotDeclaratedException(string propName) : base($"Property \"{propName}\" not declared") { }
|
|
}
|
|
}
|