1use thiserror::Error; 2 3/// Generic error type for the `HttpCache` Surf implementation. 4#[derive(Error, Debug)] 5pub enum Error { 6 /// There was a Surf client error 7 #[error("Surf error: {0}")] 8 Surf(#[from] anyhow::Error), 9}