html_extractor/
error.rs

1use std::borrow::Cow;
2use thiserror::Error;
3
4#[derive(Debug, Error)]
5pub enum Error {
6    #[error("invalid input: {0}")]
7    InvalidInput(Cow<'static, str>),
8}