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)]
#[cfg(feature = "key-load")]
pub struct KeyLoadError {
message: String,
source: Option<Box<dyn Error>>,
}
#[cfg(feature = "key-load")]
impl KeyLoadError {
pub fn new(message: &str) -> Self {
Self {
message: message.into(),
source: None,
}
}
pub fn with_source(source: Box<dyn Error>, message: &str) -> Self {
Self {
message: message.into(),
source: Some(source),
}
}
}
#[cfg(feature = "key-load")]
impl Error for KeyLoadError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
self.source.as_deref()
}
}
#[cfg(feature = "key-load")]
impl std::fmt::Display for KeyLoadError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
if let Some(ref err) = self.source {
write!(f, "{}: {}", self.message, err)
} else {
f.write_str(&self.message)
}
}
}