1use thiserror::Error; 2 3#[derive(Debug, Error)] 4pub enum TopicIdError { 5 #[error("topic id is empty")] 6 Empty, 7}