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