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

8 lines
227 B
C#

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