1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum Error { 5 #[error("Field does not match type")] 6 VertexDuplicates, 7}