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

8 lines
222 B
C#

namespace Components.Exceptions
{
public class PropertyNullException : UserControlTreeViewException
{
public PropertyNullException(string propName) : base($"Property \"{propName}\" is null") { }
}
}