blob: 6bb734438db788336be31bf2ab8cdebf294e1cdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//! Declare error type for tor-netdir
use thiserror::Error;
/// An error returned by the network directory code
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum Error {
/// We don't have enough directory info to build circuits
#[error("not enough directory information to build circuits")]
NotEnoughInfo,
}
|