openethereum/util/src/error.rs

67 lines
1.8 KiB
Rust
Raw Normal View History

// 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.
#![allow(missing_docs)]
#![allow(unknown_lints)]
use std::{self, fmt};
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)]
/// Error in database subsystem.
2016-01-17 13:11:25 +01:00
pub enum BaseDataError {
/// An entry was removed more times than inserted.
2016-03-13 21:54:06 +01:00
NegativelyReferencedHash(H256),
/// A committed value was inserted more than once.
AlreadyExists(H256),
2016-01-17 13:11:25 +01: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) =>
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
}
}
}
impl std::error::Error for BaseDataError {
fn description(&self) -> &str {
"Error in database subsystem"
2016-05-20 21:27:20 +02:00
}
}
error_chain! {
types {
UtilError, ErrorKind, ResultExt, Result;
2016-05-20 21:19:26 +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
}
}