1 2 3 4 5 6 7
#[derive(thiserror::Error, Debug)] pub enum Error { #[error("{0}")] UrlParseError(#[from] url::ParseError), #[error("URL cannot be a base")] UrlCannotBeABase, }