use thiserror::Error;
#[derive(Debug, Error)]
pub enum JiraError {
#[error("HTTP error: {0}")]
Http(#[from] reqwest::Error),
#[error("Authentication error: {0}")]
Auth(String),
#[error("API error (status {status}): {message}")]
Api { status: u16, message: String },
#[error("Configuration error: {0}")]
Config(String),
#[error("Not found: {0}")]
NotFound(String),
#[error("Rate limited — retry after {retry_after}s")]
RateLimit { retry_after: u64 },
#[error("Serialization error: {0}")]
Serialization(#[from] serde_json::Error),
#[error("IO error: {0}")]
Io(#[from] std::io::Error),
}
pub type Result<T> = std::result::Result<T, JiraError>;