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/>.
|
|
|
|
|
2015-12-08 12:59:19 +01:00
|
|
|
use std::fmt;
|
|
|
|
use std::error::Error as StdError;
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Error concerning the RLP decoder.
|
2015-12-08 12:59:19 +01:00
|
|
|
pub enum DecoderError {
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Data has additional bytes at the end of the valid RLP fragment.
|
2016-01-26 19:18:22 +01:00
|
|
|
RlpIsTooBig,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Data has too few bytes for valid RLP.
|
2015-12-08 12:59:19 +01:00
|
|
|
RlpIsTooShort,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Expect an encoded list, RLP was something else.
|
2015-12-08 12:59:19 +01:00
|
|
|
RlpExpectedToBeList,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Expect encoded data, RLP was something else.
|
2015-12-08 12:59:19 +01:00
|
|
|
RlpExpectedToBeData,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Expected a different size list.
|
2016-01-12 00:55:42 +01:00
|
|
|
RlpIncorrectListLen,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Data length number has a prefixed zero byte, invalid for numbers.
|
2016-01-12 23:44:30 +01:00
|
|
|
RlpDataLenWithZeroPrefix,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// List length number has a prefixed zero byte, invalid for numbers.
|
2016-01-12 23:44:30 +01:00
|
|
|
RlpListLenWithZeroPrefix,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Non-canonical (longer than necessary) representation used for data or list.
|
2016-01-12 23:44:30 +01:00
|
|
|
RlpInvalidIndirection,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Declared length is inconsistent with data specified after.
|
2016-04-30 17:41:24 +02:00
|
|
|
RlpInconsistentLengthAndData,
|
|
|
|
/// Custom rlp decoding error.
|
|
|
|
Custom(&'static str),
|
2015-12-08 12:59:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StdError for DecoderError {
|
|
|
|
fn description(&self) -> &str {
|
|
|
|
"builder error"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for DecoderError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt::Debug::fmt(&self, f)
|
|
|
|
}
|
|
|
|
}
|