mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-15 17:38:56 +01:00
8 lines
117 B
Rust
8 lines
117 B
Rust
|
use thiserror::Error;
|
||
|
|
||
|
#[derive(Error, Debug)]
|
||
|
pub enum Error {
|
||
|
#[error("Index not found")]
|
||
|
IndexNotFound,
|
||
|
}
|