use thiserror::Error; #[derive(Error, Debug)] pub enum DaemonError { #[error("DB error")] DBError(#[from] j_db::error::JDbError), }