8 lines
211 B
C#
8 lines
211 B
C#
|
namespace Components.Exceptions
|
|||
|
{
|
|||
|
public class TreeHierarchyNotSetException : UserControlTreeViewException
|
|||
|
{
|
|||
|
public TreeHierarchyNotSetException() : base("Tree hierarchy not set") { }
|
|||
|
}
|
|||
|
}
|