1#[derive(Debug, thiserror::Error)] 2pub enum Error { 3 #[error("Cannot represent timetamp as Unix time: {0:?}")] 4 WrongTimestamp(crate::message::Timestamp), 5}