File size: 1,377 Bytes
a21c316 | 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | use serde::Serialize;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum AppError {
#[error("Database error: {0}")]
Database(#[from] rusqlite::Error),
#[error("Network error: {0}")]
Network(String, Option<u16>),
#[error("IO error: {0}")]
Io(#[from] std::io::Error),
#[error("Tauri error: {0}")]
Tauri(#[from] tauri::Error),
#[error("OAuth error: {0}")]
OAuth(String),
#[error("Configuration error: {0}")]
Config(String),
#[error("Account error: {0}")]
Account(String),
#[error("Unknown error: {0}")]
Unknown(String),
}
impl From<reqwest::Error> for AppError {
fn from(err: reqwest::Error) -> Self {
let status = err.status().map(|s| s.as_u16());
AppError::Network(err.to_string(), status)
}
}
impl From<rquest::Error> for AppError {
fn from(err: rquest::Error) -> Self {
let status = err.status().map(|s| s.as_u16());
AppError::Network(err.to_string(), status)
}
}
// Implement Serialize so it can be used as a return value for Tauri commands
impl Serialize for AppError {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.to_string().as_str())
}
}
// Implement alias for Result to simplify usage
pub type AppResult<T> = Result<T, AppError>;
|