rudof_lib 0.2.18

RDF data shapes implementation in Rust
1
2
3
4
5
6
7
8
9
use thiserror::Error;

/// Errors that can occur when working with SPARQL endpoint service descriptions.
#[derive(Error, Debug)]
pub enum ServiceError {
    /// The service result format specified is not supported by Rudof.
    #[error("Unsupported service result format: '{format}'. Valid formats are: 'internal', 'mie', 'json'")]
    UnsupportedResultServiceFormat { format: String },
}