blob: 8a61231b651d1abb46602ab01bb99f5c33a01c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//! Internal: Declare an Error type for tor-bytes
use thiserror::Error;
/// Error type for decoding Tor objects from bytes.
#[derive(Error, Debug, PartialEq, Eq, Clone)]
#[non_exhaustive]
pub enum Error {
/// Tried to read something, but we didn't find enough bytes.
///
/// This can mean that the object is truncated, or that we need to
/// read more and try again, depending on the context in which it
/// was received.
#[error("object truncated (or not fully present)")]
Truncated,
/// Called Reader::should_be_exhausted(), but found bytes anyway.
#[error("extra bytes at end of object")]
ExtraneousBytes,
/// An attempt to parse an object failed for some reason related to its
/// contents.
#[error("bad object: {0}")]
BadMessage(&'static str),
/// A parsing error that should never happen.
///
/// We use this one in lieu of calling assert() and expect() and
/// unwrap() from within parsing code.
#[error("internal programming error")]
Internal,
}
|