BSTException class

Exception thrown if a Binary Search Tree fails validation.

public class BSTException : Exception

Public Members

name description
BSTException(…) BSTException Constructor. (2 constructors)
CurrentKey { get; set; } Key for the Current Invalid Node.
CurrentValue { get; set; } Value for the Current Invalid Node.
OtherKey { get; set; } Key for a Node Adjacent to the Current Node.
OtherValue { get; set; } Value for a Node Adjacent to the Current Node.

See Also