1#[derive(thiserror::Error, Debug)] 2pub enum Error { 3 #[error(transparent)] 4 UbuntuError(#[from] crate::ubuntu::Error), 5}