breez_sdk_core/lsps0/
error.rs

1use anyhow::anyhow;
2
3use crate::node_api::NodeError;
4
5use super::jsonrpc::RpcError;
6
7#[derive(Debug, thiserror::Error)]
8pub enum Error {
9    #[error("Local lsps0 error: {0}")]
10    Local(anyhow::Error),
11
12    #[error("Lsps0 deserialization error: {0}")]
13    Deserialization(serde_json::Error),
14
15    #[error("Lsps0 node: {0}")]
16    Node(NodeError),
17
18    #[error("Lsps0 request timed out")]
19    Timeout,
20
21    #[error("Lsps0 remote error: {0:?}")]
22    Remote(RpcError),
23}
24
25impl From<anyhow::Error> for Error {
26    fn from(value: anyhow::Error) -> Self {
27        Self::Local(value)
28    }
29}
30
31impl From<NodeError> for Error {
32    fn from(value: NodeError) -> Self {
33        Self::Node(value)
34    }
35}
36
37impl From<serde_json::Error> for Error {
38    fn from(value: serde_json::Error) -> Self {
39        Self::Deserialization(value)
40    }
41}
42
43impl From<tokio::sync::oneshot::error::RecvError> for Error {
44    fn from(_value: tokio::sync::oneshot::error::RecvError) -> Self {
45        Self::Local(anyhow!("server lost"))
46    }
47}
48
49impl From<tokio::time::error::Elapsed> for Error {
50    fn from(_value: tokio::time::error::Elapsed) -> Self {
51        Self::Timeout
52    }
53}