2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-06-20 10:06:49 +02:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
use std::fmt;
|
|
|
|
use std::io::Error as IoError;
|
|
|
|
use ethkey::Error as EthKeyError;
|
2016-09-22 14:48:22 +02:00
|
|
|
use crypto::Error as EthCryptoError;
|
2016-06-20 00:10:34 +02:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
Io(IoError),
|
|
|
|
InvalidPassword,
|
|
|
|
InvalidSecret,
|
2017-01-30 11:44:09 +01:00
|
|
|
InvalidCryptoMeta,
|
2016-06-20 00:10:34 +02:00
|
|
|
InvalidAccount,
|
2016-08-15 15:09:00 +02:00
|
|
|
InvalidMessage,
|
2016-07-28 20:26:07 +02:00
|
|
|
InvalidKeyFile(String),
|
2017-01-30 11:44:09 +01:00
|
|
|
VaultsAreNotSupported,
|
|
|
|
UnsupportedVault,
|
|
|
|
InvalidVaultName,
|
|
|
|
VaultNotFound,
|
2016-06-20 00:10:34 +02:00
|
|
|
CreationFailed,
|
|
|
|
EthKey(EthKeyError),
|
2016-09-22 14:48:22 +02:00
|
|
|
EthCrypto(EthCryptoError),
|
2016-06-20 00:10:34 +02:00
|
|
|
Custom(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Error {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
|
|
|
let s = match *self {
|
2016-07-28 20:26:07 +02:00
|
|
|
Error::Io(ref err) => err.to_string(),
|
2016-06-20 00:10:34 +02:00
|
|
|
Error::InvalidPassword => "Invalid password".into(),
|
|
|
|
Error::InvalidSecret => "Invalid secret".into(),
|
2017-01-30 11:44:09 +01:00
|
|
|
Error::InvalidCryptoMeta => "Invalid crypted metadata".into(),
|
2016-06-20 00:10:34 +02:00
|
|
|
Error::InvalidAccount => "Invalid account".into(),
|
2016-08-15 15:09:00 +02:00
|
|
|
Error::InvalidMessage => "Invalid message".into(),
|
2016-07-28 20:26:07 +02:00
|
|
|
Error::InvalidKeyFile(ref reason) => format!("Invalid key file: {}", reason),
|
2017-01-30 11:44:09 +01:00
|
|
|
Error::VaultsAreNotSupported => "Vaults are not supported".into(),
|
|
|
|
Error::UnsupportedVault => "Vault is not supported for this operation".into(),
|
|
|
|
Error::InvalidVaultName => "Invalid vault name".into(),
|
|
|
|
Error::VaultNotFound => "Vault not found".into(),
|
2016-06-20 00:10:34 +02:00
|
|
|
Error::CreationFailed => "Account creation failed".into(),
|
2016-07-28 20:26:07 +02:00
|
|
|
Error::EthKey(ref err) => err.to_string(),
|
2016-09-22 14:48:22 +02:00
|
|
|
Error::EthCrypto(ref err) => err.to_string(),
|
2016-06-20 00:10:34 +02:00
|
|
|
Error::Custom(ref s) => s.clone(),
|
|
|
|
};
|
|
|
|
|
|
|
|
write!(f, "{}", s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<IoError> for Error {
|
|
|
|
fn from(err: IoError) -> Self {
|
|
|
|
Error::Io(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<EthKeyError> for Error {
|
|
|
|
fn from(err: EthKeyError) -> Self {
|
|
|
|
Error::EthKey(err)
|
|
|
|
}
|
|
|
|
}
|
2016-09-22 14:48:22 +02:00
|
|
|
|
|
|
|
impl From<EthCryptoError> for Error {
|
|
|
|
fn from(err: EthCryptoError) -> Self {
|
|
|
|
Error::EthCrypto(err)
|
|
|
|
}
|
|
|
|
}
|