1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-07-27 18:28:31 +00:00

add MxidError to our Error

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-06-11 22:37:16 +00:00
parent 1f9225e4d1
commit e76e604771

View file

@ -87,6 +87,8 @@ pub enum Error {
#[error("{0}")]
Fmt(#[from] fmt::Error),
#[error("{0}")]
Mxid(#[from] ruma::IdParseError),
#[error("{0}")]
Err(String),
}