8 lines
201 B
C#
8 lines
201 B
C#
|
namespace Components.Exceptions
|
|||
|
{
|
|||
|
public class NotSelectedNodeException : UserControlTreeViewException
|
|||
|
{
|
|||
|
public NotSelectedNodeException() : base("Node is not selected") { }
|
|||
|
}
|
|||
|
}
|