pub use crate::webrtc_socket::error::SignalingError;
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("The connection failed to establish. Check your connection and try again.")]
ConnectionFailed(SignalingError),
#[error("The signaling server connection was severed.")]
Disconnected(SignalingError),
}