1use thiserror::Error; 2 3#[derive(Error, Debug)] 4#[error("Failed to read archive path")] 5pub struct GetArchivePathError(#[source] pub std::io::Error);