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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
use std::path::PathBuf;
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
#[error("runtime error: {0}")]
Runtime(#[from] tauri_runtime::Error),
#[error("failed to create webview: {0}")]
CreateWebview(Box<dyn std::error::Error + Send>),
#[error("failed to create window")]
CreateWindow,
#[error("a window with label `{0}` already exists")]
WindowLabelAlreadyExists(String),
#[error("webview not found: invalid label or it was closed")]
WebviewNotFound,
#[error("failed to send message to the webview")]
FailedToSendMessage,
#[error("asset not found: {0}")]
AssetNotFound(String),
#[error("JSON error: {0}")]
Json(serde_json::Error),
#[error("unknown API: {0:?}")]
UnknownApi(Option<serde_json::Error>),
#[error("failed to execute API: {0}")]
FailedToExecuteApi(#[from] crate::api::Error),
#[error("{0}")]
Io(#[from] std::io::Error),
#[cfg(feature = "updater")]
#[error("Failed to decode base64 string: {0}")]
Base64Decode(#[from] base64::DecodeError),
#[error("invalid icon: {0}")]
InvalidIcon(Box<dyn std::error::Error + Send>),
#[error("http client dropped or not initialized")]
HttpClientNotInitialized,
#[error("{0}")]
ApiNotEnabled(String),
#[error("'{0}' not on the allowlist (https://tauri.studio/docs/api/config#tauri.allowlist)")]
ApiNotAllowlisted(String),
#[error("invalid args `{1}` for command `{0}`: {2}")]
InvalidArgs(&'static str, &'static str, serde_json::Error),
#[error("error encountered during setup hook: {0}")]
Setup(Box<dyn std::error::Error + Send>),
#[cfg(feature = "updater")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "updater")))]
#[error("Updater: {0}")]
TauriUpdater(#[from] crate::updater::Error),
#[error("failed to initialize plugin `{0}`: {1}")]
PluginInitialization(String, String),
#[error("error encountered during tray setup: {0}")]
SystemTray(Box<dyn std::error::Error + Send>),
#[error("invalid url: {0}")]
InvalidUrl(url::ParseError),
#[error(transparent)]
JoinError(Box<dyn std::error::Error + Send>),
#[error("path not allowed on the configured scope: {0}")]
PathNotAllowed(PathBuf),
#[error("sending notification was not allowed by the user")]
NotificationNotAllowed,
#[error("url not allowed on the configured scope: {0}")]
UrlNotAllowed(url::Url),
#[error("sidecar not configured under `tauri.conf.json > tauri > bundle > externalBin`: {0}")]
SidecarNotAllowed(PathBuf),
#[cfg(shell_scope)]
#[error("sidecar configuration found, but unable to create a path to it: {0}")]
SidecarNotFound(#[from] Box<crate::ShellScopeError>),
#[error("program not allowed on the configured shell scope: {0}")]
ProgramNotAllowed(PathBuf),
#[cfg(feature = "isolation")]
#[error("isolation pattern error: {0}")]
IsolationPattern(#[from] tauri_utils::pattern::isolation::Error),
#[error("invalid window url: {0}")]
InvalidWindowUrl(&'static str),
}
pub(crate) fn into_anyhow<T: std::fmt::Display>(err: T) -> anyhow::Error {
anyhow::anyhow!(err.to_string())
}
impl Error {
pub(crate) fn into_anyhow(self) -> anyhow::Error {
anyhow::anyhow!(self.to_string())
}
}
impl From<serde_json::Error> for Error {
fn from(error: serde_json::Error) -> Self {
if error.to_string().contains("unknown variant") {
Self::UnknownApi(Some(error))
} else {
Self::Json(error)
}
}
}