paperforge_extract/
error.rs1use thiserror::Error;
2
3pub type ExtractResult<T> = Result<T, ExtractError>;
4
5#[derive(Debug, Error)]
6pub enum ExtractError {
7 #[error("parse error: {0}")]
8 Parse(String),
9
10 #[error("unsupported feature: {0}")]
11 Unsupported(String),
12}