use std::fmt;
#[derive(Debug, snafu::Snafu)]
#[snafu(visibility(pub(crate)))]
pub enum LoaderError {
#[snafu(display("Error with {}\n: {}", path.display(), source))]
Fs {
path: std::path::PathBuf,
source: std::io::Error,
},
#[snafu(display("Error parsing Fluent\n: {}", source))]
Fluent {
#[snafu(source(from(Vec<fluent_syntax::parser::ParserError>, FluentError::from)))]
source: FluentError,
},
}
#[derive(Debug)]
pub struct FluentError(Vec<fluent_syntax::parser::ParserError>);
impl From<Vec<fluent_syntax::parser::ParserError>> for FluentError {
fn from(errors: Vec<fluent_syntax::parser::ParserError>) -> Self {
Self(errors)
}
}
impl From<FluentError> for Vec<fluent_syntax::parser::ParserError> {
fn from(error: FluentError) -> Self {
error.0
}
}
impl fmt::Display for FluentError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
for error in &self.0 {
write!(f, "{:?}", error)?;
}
Ok(())
}
}
impl std::error::Error for FluentError {}