Skip to main content

nodedb_vector/
error.rs

1//! Vector engine error types.
2
3/// Errors from vector index operations.
4#[derive(Debug, thiserror::Error)]
5pub enum VectorError {
6    #[error("vector dimension mismatch: expected {expected}, got {got}")]
7    DimensionMismatch { expected: usize, got: usize },
8}