mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-21 00:21:49 +00:00
7 lines
184 B
Rust
7 lines
184 B
Rust
#[derive(Clone, Debug, PartialEq, Eq, thiserror::Error)]
|
|
pub enum Error {
|
|
#[error("cache is unavailable")]
|
|
Unavailable,
|
|
#[error("invalid cache entry")]
|
|
InvalidEntry,
|
|
}
|