hopr_transport_identity/errors.rs
1use thiserror::Error;
2
3/// All errors raised by the crate.
4#[derive(Error, Debug, PartialEq)]
5pub enum TransportIdentityError {
6 #[error("Failed to process a multiaddress: {0}")]
7 Multiaddress(String),
8}
9
10/// Result utilizing the [P2PError] as the error type.
11pub type Result<T> = core::result::Result<T, TransportIdentityError>;