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