2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01: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-01-17 13:11:25 +01:00
|
|
|
//! General error types for use in ethcore.
|
|
|
|
|
2017-09-05 12:14:03 +02:00
|
|
|
#![allow(missing_docs)]
|
|
|
|
#![allow(unknown_lints)]
|
|
|
|
|
|
|
|
use std::{self, fmt};
|
2017-07-06 11:26:14 +02:00
|
|
|
use rustc_hex::FromHexError;
|
2016-01-17 13:11:25 +01:00
|
|
|
use rlp::DecoderError;
|
2017-07-29 21:56:42 +02:00
|
|
|
use bigint::hash::H256;
|
2016-01-17 13:11:25 +01:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Error in database subsystem.
|
2016-01-17 13:11:25 +01:00
|
|
|
pub enum BaseDataError {
|
2016-02-03 14:51:45 +01:00
|
|
|
/// An entry was removed more times than inserted.
|
2016-03-13 21:54:06 +01:00
|
|
|
NegativelyReferencedHash(H256),
|
2016-08-03 16:34:32 +02:00
|
|
|
/// A committed value was inserted more than once.
|
|
|
|
AlreadyExists(H256),
|
2016-01-17 13:11:25 +01:00
|
|
|
}
|
|
|
|
|
2016-05-21 00:13:16 +02:00
|
|
|
impl fmt::Display for BaseDataError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-05-22 18:41:45 +02:00
|
|
|
match *self {
|
|
|
|
BaseDataError::NegativelyReferencedHash(hash) =>
|
2016-08-03 16:34:32 +02:00
|
|
|
write!(f, "Entry {} removed from database more times than it was added.", hash),
|
|
|
|
BaseDataError::AlreadyExists(hash) =>
|
|
|
|
write!(f, "Committed key already exists in database: {}", hash),
|
2016-05-22 18:41:45 +02:00
|
|
|
}
|
2016-05-21 00:13:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-05 12:14:03 +02:00
|
|
|
impl std::error::Error for BaseDataError {
|
|
|
|
fn description(&self) -> &str {
|
|
|
|
"Error in database subsystem"
|
2016-05-20 21:27:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-05 12:14:03 +02:00
|
|
|
error_chain! {
|
|
|
|
types {
|
|
|
|
UtilError, ErrorKind, ResultExt, Result;
|
2016-05-20 21:19:26 +02:00
|
|
|
}
|
|
|
|
|
2017-09-05 12:14:03 +02:00
|
|
|
foreign_links {
|
|
|
|
Io(::std::io::Error);
|
|
|
|
FromHex(FromHexError);
|
|
|
|
Decoder(DecoderError);
|
|
|
|
Snappy(::snappy::InvalidInput);
|
|
|
|
BaseData(BaseDataError);
|
2016-01-17 13:11:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|