use std::fmt;
#[derive(Debug)]
pub struct SetupError(Box<dyn std::error::Error>);
impl From<Box<dyn std::error::Error>> for SetupError {
fn from(error: Box<dyn std::error::Error>) -> Self {
Self(error)
}
}
unsafe impl Send for SetupError {}
unsafe impl Sync for SetupError {}
impl fmt::Display for SetupError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl std::error::Error for SetupError {}
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
#[error("runtime error: {0}")]
Runtime(#[from] tauri_runtime::Error),
#[error("a window with label `{0}` already exists")]
WindowLabelAlreadyExists(String),
#[error("a webview with label `{0}` already exists")]
WebviewLabelAlreadyExists(String),
#[error("cannot reparent when using a WebviewWindow")]
CannotReparentWebviewWindow,
#[error("asset not found: {0}")]
AssetNotFound(String),
#[error("JSON error: {0}")]
Json(#[from] serde_json::Error),
#[error("{0}")]
Io(#[from] std::io::Error),
#[error("invalid icon: {0}")]
InvalidIcon(std::io::Error),
#[error("invalid args `{1}` for command `{0}`: {2}")]
InvalidArgs(&'static str, &'static str, serde_json::Error),
#[error("error encountered during setup hook: {0}")]
Setup(SetupError),
#[error("failed to initialize plugin `{0}`: {1}")]
PluginInitialization(String, String),
#[error("invalid url: {0}")]
InvalidUrl(url::ParseError),
#[error(transparent)]
JoinError(#[from] tokio::task::JoinError),
#[cfg(feature = "isolation")]
#[error("isolation pattern error: {0}")]
IsolationPattern(#[from] tauri_utils::pattern::isolation::Error),
#[error("invalid window url: {0}")]
InvalidWebviewUrl(&'static str),
#[error("invalid glob pattern: {0}")]
GlobPattern(#[from] glob::PatternError),
#[cfg(any(feature = "image-png", feature = "image-ico"))]
#[error("failed to process image: {0}")]
Image(#[from] image::error::ImageError),
#[error("Unexpected `raw_window_handle` for the current platform")]
InvalidWindowHandle,
#[cfg(target_os = "android")]
#[error("jni error: {0}")]
Jni(#[from] jni::errors::Error),
#[error("failed to receive message")]
FailedToReceiveMessage,
#[error("menu error: {0}")]
#[cfg(desktop)]
Menu(#[from] muda::Error),
#[error(transparent)]
#[cfg(desktop)]
BadMenuIcon(#[from] muda::BadIcon),
#[error("tray icon error: {0}")]
#[cfg(all(desktop, feature = "tray-icon"))]
#[cfg_attr(docsrs, doc(cfg(all(desktop, feature = "tray-icon"))))]
Tray(#[from] tray_icon::Error),
#[error(transparent)]
#[cfg(all(desktop, feature = "tray-icon"))]
#[cfg_attr(docsrs, doc(cfg(all(desktop, feature = "tray-icon"))))]
BadTrayIcon(#[from] tray_icon::BadIcon),
#[error("path does not have a parent")]
NoParent,
#[error("path does not have an extension")]
NoExtension,
#[error("path does not have a basename")]
NoBasename,
#[error("failed to read current dir: {0}")]
CurrentDir(std::io::Error),
#[cfg(not(target_os = "android"))]
#[error("unknown path")]
UnknownPath,
#[cfg(target_os = "android")]
#[error(transparent)]
PluginInvoke(#[from] crate::plugin::mobile::PluginInvokeError),
#[error("window not found")]
WindowNotFound,
#[error("The resource id {0} is invalid.")]
BadResourceId(crate::resources::ResourceId),
#[error(transparent)]
Anyhow(#[from] anyhow::Error),
#[error("webview not found")]
WebviewNotFound,
#[error("this feature requires the `unstable` flag on Cargo.toml")]
UnstableFeatureNotSupported,
#[error("error deserializing scope: {0}")]
CannotDeserializeScope(Box<dyn std::error::Error + Send + Sync>),
#[error(transparent)]
RawHandleError(#[from] raw_window_handle::HandleError),
#[error("unable to generate random bytes from the operating system: {0}")]
Csprng(getrandom::Error),
#[error("bad __TAURI_INVOKE_KEY__ value received in ipc message")]
InvokeKey,
#[error("only alphanumeric, '-', '/', ':', '_' permitted for event names: {0:?}")]
IllegalEventName(String),
#[error(transparent)]
TokioOneshotRecv(#[from] tokio::sync::oneshot::error::RecvError),
}
impl From<getrandom::Error> for Error {
fn from(value: getrandom::Error) -> Self {
Self::Csprng(value)
}
}
pub type Result<T> = std::result::Result<T, Error>;
#[cfg(test)]
mod tests {
#[test]
fn error_is_send_sync() {
crate::test_utils::assert_send::<super::Error>();
crate::test_utils::assert_sync::<super::Error>();
}
}