Skip to main content

appletheia_application/messaging/
topic_id_error.rs

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