1 use thiserror::Error; 2 3 #[derive(Error, Debug)] 4 #[error(transparent)] 5 #[error("...")] 6 pub struct Error(anyhow::Error); 7 main()8 fn main() {} 9