torrust-actix 4.2.3

A rich, fast and efficient Bittorrent Tracker.
1
2
3
4
5
6
7
8
9
10
/// A lightweight error type carrying a plain-text message.
///
/// Used throughout the tracker for query-parsing failures, validation errors,
/// and other recoverable conditions that do not need a full error-chain.
/// Implements [`std::error::Error`] and [`std::fmt::Display`] via the `impls`
/// module.
#[derive(Debug)]
pub struct CustomError {
    pub(crate) message: String,
}