10 lines
187 B
Rust
10 lines
187 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum ServerError {
|
|
#[error("notmuch")]
|
|
NotmuchError(#[from] notmuch::NotmuchError),
|
|
#[error("flatten")]
|
|
FlattenError,
|
|
}
|