1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use thiserror::Error;

#[derive(Error, Debug)]
pub enum AnthropicError {
    #[error("Anthropic API error: Invalid request - {0}")]
    InvalidRequestError(String),

    #[error("Anthropic API error: Authentication failed - {0}")]
    AuthenticationError(String),

    #[error("Anthropic API error: Permission denied - {0}")]
    PermissionError(String),

    #[error("Anthropic API error: Not found - {0}")]
    NotFoundError(String),

    #[error("Anthropic API error: Rate limit exceeded - {0}")]
    RateLimitError(String),

    #[error("Anthropic API error: Internal error - {0}")]
    ApiError(String),

    #[error("Anthropic API error: Overloaded - {0}")]
    OverloadedError(String),
}