1use thiserror::Error; 2 3/// This type represents errors that occur during [`Template`](crate::template::Template) 4/// construction. 5#[derive(Error, Debug)] 6#[error("invalid template: {0}")] 7pub struct TemplateError(#[from] tinytemplate::error::Error);