rudof_lib 0.3.10

RDF and Knowledge Graphs processing tool
1
2
3
4
5
6
7
8
9
use thiserror::Error;

/// Errors that can occur when managing the default list of prefix declarations.
#[derive(Error, Debug)]
pub enum PrefixesError {
    /// The referenced alias is not present in the default prefixes.
    #[error("Unknown prefix alias '{alias}'")]
    AliasNotFound { alias: String },
}