mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-16 04:37:44 +01:00
73 lines
1.8 KiB
Rust
73 lines
1.8 KiB
Rust
use std::io;
|
|
use serde::{Serialize, Serializer};
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
TemplateError(#[from] yaak_templates::error::Error),
|
|
|
|
#[error(transparent)]
|
|
ModelError(#[from] yaak_models::error::Error),
|
|
|
|
#[error(transparent)]
|
|
SyncError(#[from] yaak_sync::error::Error),
|
|
|
|
#[error(transparent)]
|
|
CryptoError(#[from] yaak_crypto::error::Error),
|
|
|
|
#[error(transparent)]
|
|
GitError(#[from] yaak_git::error::Error),
|
|
|
|
#[error(transparent)]
|
|
TokioTimeoutElapsed(#[from] tokio::time::error::Elapsed),
|
|
|
|
#[error(transparent)]
|
|
WebsocketError(#[from] yaak_ws::error::Error),
|
|
|
|
#[cfg(feature = "license")]
|
|
#[error(transparent)]
|
|
LicenseError(#[from] yaak_license::error::Error),
|
|
|
|
#[error(transparent)]
|
|
PluginError(#[from] yaak_plugins::error::Error),
|
|
|
|
#[error(transparent)]
|
|
CommonError(#[from] yaak_common::error::Error),
|
|
|
|
#[error(transparent)]
|
|
ClipboardError(#[from] tauri_plugin_clipboard_manager::Error),
|
|
|
|
#[error("Updater error: {0}")]
|
|
UpdaterError(#[from] tauri_plugin_updater::Error),
|
|
|
|
#[error("JSON error: {0}")]
|
|
JsonError(#[from] serde_json::error::Error),
|
|
|
|
#[error("Tauri error: {0}")]
|
|
TauriError(#[from] tauri::Error),
|
|
|
|
#[error("Event source error: {0}")]
|
|
EventSourceError(#[from] eventsource_client::Error),
|
|
|
|
#[error("I/O error: {0}")]
|
|
IOError(#[from] io::Error),
|
|
|
|
#[error("Request error: {0}")]
|
|
RequestError(#[from] reqwest::Error),
|
|
|
|
#[error("Generic error: {0}")]
|
|
GenericError(String),
|
|
}
|
|
|
|
impl Serialize for Error {
|
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
serializer.serialize_str(self.to_string().as_ref())
|
|
}
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|