mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-02-10 08:53:08 +00:00
8 lines
134 B
Rust
8 lines
134 B
Rust
|
|
pub use thiserror::Error;
|
||
|
|
|
||
|
|
#[derive(Error, Debug)]
|
||
|
|
pub enum ChatError {
|
||
|
|
#[error("protocol error: {0:?}")]
|
||
|
|
Protocol(String),
|
||
|
|
}
|