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

8 lines
227 B
C#
Raw Normal View History

2024-10-11 02:06:27 +04:00
namespace PutincevLibrary.Exceptions
{
public class PropertyNullException : UserControlTreeViewException
{
public PropertyNullException(string propName) : base($"Property \"{propName}\" is null") { }
}
}