Skip to main content

code_chunker/
error.rs

1//! Error types for code-chunker.
2
3/// Errors that can occur during chunking.
4#[derive(Debug, thiserror::Error)]
5pub enum Error {
6    /// Embedding model error.
7    #[error("embedding error: {0}")]
8    Embedding(String),
9}
10
11/// Result type for code-chunker operations.
12pub type Result<T> = std::result::Result<T, Error>;