8 lines
227 B
C#
8 lines
227 B
C#
namespace PutincevLibrary.Exceptions
|
|
{
|
|
public class PropertyNullException : UserControlTreeViewException
|
|
{
|
|
public PropertyNullException(string propName) : base($"Property \"{propName}\" is null") { }
|
|
}
|
|
}
|