use thiserror::Error;
#[derive(Error, Debug)]
#[allow(dead_code, unused)]
pub enum ConnectionError {
#[error("Connection Time Out")]
TimedOut,
#[error("Connection was aborted")]
Aborted,
#[error("Unexpected protocol used")]
ProtocolError,
#[error("Client is not authorized on network")]
Unauthorized,
}