1/// Graph errors. 2#[derive(Debug, thiserror::Error)] 3#[non_exhaustive] 4pub enum Error { 5 /// The graph is missing relevant information. 6 #[error("incomplete graph: {value:?}")] 7 IncompleteGraph { value: String }, 8}