AppFlowy-Cloud/crates/websocket/src/error.rs

6 lines
118 B
Rust

#[derive(Debug, Clone, thiserror::Error)]
pub enum WSError {
#[error("Internal failure:{0}")]
Internal(String),
}