1
2
3
4
5
6
7
8
//! Error types.

/// Errors during tree construction
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum ConstructionError {
    /// An object lays outside the tree domain
    ObjectOutsidePartition
}