use thiserror::Error;
#[derive(Debug, Error)]
#[error("Failed to allocate object")]
pub struct AllocationError;
#[derive(Debug, Error)]
#[error("Failed to subset font face")]
pub struct SubsettingError;
#[derive(Debug, Error)]
#[error("Failed to extract font face from blob")]
pub struct FontFaceExtractionError;