21 lines
455 B
Rust
21 lines
455 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, thiserror::Error, Serialize, Deserialize)]
|
|
pub enum RagError {
|
|
#[error("Failed to parse document: {0}")]
|
|
ParseError(String),
|
|
|
|
#[error("Unsupported file type: {0}")]
|
|
UnsupportedFileType(String),
|
|
|
|
#[error("IO error: {0}")]
|
|
IoError(String),
|
|
}
|
|
|
|
impl From<std::io::Error> for RagError {
|
|
fn from(err: std::io::Error) -> Self {
|
|
RagError::IoError(err.to_string())
|
|
}
|
|
}
|
|
|