#[derive(Debug, thiserror::Error)]
#[cfg_attr(feature = "uniffi", derive(uniffi::Error))]
pub enum MessagingError {
#[error("Error receiving data")]
ReceivingError,
#[error("Error transmitting data")]
TransmittingError,
#[error("Could not get session ID")]
CouldNotGetSessionId,
#[error("Message could not be delivered to all recipients")]
MessageNotDelivered,
}