use thiserror::Error;
#[derive(Debug, Error)]
pub enum OutputError {
#[error("JSON output is only supported for standard search (not count or file-list modes)")]
JsonOutputIncompatibleMode,
#[error("JSON serialization error: {0}")]
JsonSerialize(#[from] serde_json::Error),
#[error("IO error: {0}")]
Io(#[from] std::io::Error),
}