use thiserror::Error;
#[derive(Debug, Clone, Error, PartialEq, Eq)]
pub enum Error {
#[error("Problem in sending a Request to the Actor")]
RequestError,
#[error("Problem in receiving a Response from the Actor")]
ResponseError,
#[error("Problem in sending an event to the Actor")]
EventError,
}