use std::error::Error;
use crate::hex::HexError;
#[derive(Debug)]
pub enum SigningError {
Internal(String),
}
impl Error for SigningError {}
impl std::fmt::Display for SigningError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Internal(msg) => f.write_str(msg),
}
}
}
impl From<HexError> for SigningError {
fn from(err: HexError) -> Self {
Self::Internal(err.to_string())
}
}
#[derive(Debug)]
pub enum VerificationError {
Internal(String),
}
impl Error for VerificationError {}
impl std::fmt::Display for VerificationError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Internal(msg) => f.write_str(msg),
}
}
}
#[derive(Debug)]
pub enum ContextError {
Internal(String),
}
impl Error for ContextError {}
impl std::fmt::Display for ContextError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Internal(msg) => f.write_str(msg),
}
}
}
#[derive(Debug)]
pub struct SignatureParseError(pub String);
impl Error for SignatureParseError {}
impl std::fmt::Display for SignatureParseError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.write_str(&self.0)
}
}
#[derive(Debug)]
pub struct KeyLoadError(pub String);
impl Error for KeyLoadError {}
impl std::fmt::Display for KeyLoadError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.write_str(&self.0)
}
}