1/// A trait that encapsulates the error type used by other traits in the library. 2pub trait TripleStoreError { 3 type Error: std::fmt::Debug; 4}