1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum TemplateError { 5 #[error("Template engine error: {0}")] 6 Tera(#[from] tera::Error), 7}