use crate::hdwallet;
use serde_json;
use std::{error, fmt, io};
#[derive(Debug)]
pub enum Error {
UnsupportedVersion(u8),
IO(io::Error),
InvalidDecoding(serde_json::Error),
InvalidEncoding(serde_json::Error),
NotFound,
InvalidCrypto(String),
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Error::IO(err)
}
}
impl From<serde_json::Error> for Error {
fn from(err: serde_json::Error) -> Self {
Error::InvalidEncoding(err)
}
}
impl From<hdwallet::Error> for Error {
fn from(err: hdwallet::Error) -> Self {
Error::InvalidCrypto(err.to_string())
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::UnsupportedVersion(v) => write!(f, "Unsupported keystore file version: {}", v),
Error::IO(ref err) => write!(f, "Keystore file IO error: {}", err),
Error::InvalidDecoding(ref err) => write!(f, "Invalid keystore file decoding: {}", err),
Error::InvalidEncoding(ref err) => write!(f, "Invalid keystore file encoding: {}", err),
Error::NotFound => f.write_str("Required keystore file wasn't found"),
Error::InvalidCrypto(ref str) => {
f.write_str(&format!("Can't parse `crypto` section for. {}", str))
}
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
"Keystore file serialize error"
}
fn cause(&self) -> Option<&error::Error> {
match *self {
_ => None,
}
}
}