You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Schema in database does not match schema supported by the Crate.
9
-
#[error(" Schema in database does not match schema supported by the Crate. The current schema version: {was}, the schema version we expected: {expected}")]
10
-
MismatchedSchema{
11
-
/// The current DB schema version.
12
-
was:i32,
13
-
/// The expected DB schema version.
14
-
expected:i32,
15
-
},
16
-
/// No DB URL was provided
17
-
#[error("DB URL is undefined")]
18
-
NoDatabaseUrl,
19
-
/// Cannot find this item
20
-
#[error("Cannot find this item")]
21
-
NotFound,
22
-
/// DB connection timeout
23
-
#[error("Connection to DB timed out")]
24
-
TimedOut,
25
-
/// Unknown error
26
-
#[error("error: {0}")]
27
-
Unknown(String),
28
-
/// No config
29
-
#[error("No config")]
30
-
NoConfig,
31
-
/// JSON Parsing error
32
-
#[error("Unable to parse database data: {0}")]
33
-
JsonParseIssue(String),
34
-
/// Unable to extract policy assets
35
-
#[error("Unable parse assets: {0}")]
36
-
AssetParsingIssue(String),
37
-
/// Unable to extract hashed witnesses
38
-
#[allow(dead_code)]
39
-
#[error("Unable to extract hashed witnesses: {0}")]
0 commit comments