Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
271 B · 10 lines
Rust
1234567891011#[derive(Debug, thiserror::Error, uniffi::Error)]#[uniffi(flat_error)]pub enum SPError { #[error("No certificate chain found")] NoCertificateChainFound, #[error("C2PA error: {0}")] C2paError(String), #[error("IO Error: {0}")] IOError(String),}