MeiliSearch/dump/src/error.rs

17 lines
497 B
Rust
Raw Normal View History

use thiserror::Error;
#[derive(Debug, Error)]
pub enum Error {
2022-10-03 16:12:01 +02:00
#[error("The version 1 of the dumps is not supported anymore. You can re-export your dump from a version between 0.21 and 0.24, or start fresh from a version 0.25 onwards.")]
DumpV1Unsupported,
#[error("Bad index name")]
BadIndexName,
#[error(transparent)]
Io(#[from] std::io::Error),
#[error(transparent)]
Serde(#[from] serde_json::Error),
2022-10-03 18:50:06 +02:00
#[error(transparent)]
Uuid(#[from] uuid::Error),
}