mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-02-23 18:58:49 +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,
|
||
|
}
|