namespace Components.Exceptions
{
    public class NodeIsNotLeafException : UserControlTreeViewException
    {
        public NodeIsNotLeafException() : base("Selected node is not a leaf") { }
    }
}