breez_sdk_core/persist/
error.rs1pub type PersistResult<T, E = PersistError> = Result<T, E>;
2
3#[derive(Debug, thiserror::Error)]
4pub enum PersistError {
5 #[error("{0}")]
6 Generic(String),
7
8 #[error("{0}")]
9 Migration(String),
10
11 #[error("Sql persistence: {0}")]
12 Sql(String),
13}
14
15impl PersistError {
16 pub(crate) fn generic(err: &str) -> Self {
17 Self::Generic(err.to_string())
18 }
19}
20
21impl From<anyhow::Error> for PersistError {
22 fn from(err: anyhow::Error) -> Self {
23 Self::Generic(err.to_string())
24 }
25}
26
27impl From<hex::FromHexError> for PersistError {
28 fn from(err: hex::FromHexError) -> Self {
29 Self::Generic(err.to_string())
30 }
31}
32
33impl From<rusqlite::Error> for PersistError {
34 fn from(err: rusqlite::Error) -> Self {
35 Self::Sql(err.to_string())
36 }
37}
38
39impl From<rusqlite_migration::Error> for PersistError {
40 fn from(err: rusqlite_migration::Error) -> Self {
41 Self::Migration(err.to_string())
42 }
43}
44
45impl From<serde_json::Error> for PersistError {
46 fn from(err: serde_json::Error) -> Self {
47 Self::Generic(err.to_string())
48 }
49}