8 lines
209 B
C#
8 lines
209 B
C#
|
namespace PutincevLibrary.Exceptions
|
|||
|
{
|
|||
|
public class NodeIsNotLeafException : UserControlTreeViewException
|
|||
|
{
|
|||
|
public NodeIsNotLeafException() : base("Selected node is not a leaf") { }
|
|||
|
}
|
|||
|
}
|