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
use thiserror::Error;
use crate::common::APDUResponseCodes;
#[derive(Debug, Error)]
pub enum LedgerError {
#[error("Response too short. Expected at least 2 bytes. Got {0:?}")]
ResponseTooShort(Vec<u8>),
#[error("Ledger device: APDU Response error `{0}`")]
BadRetcode(APDUResponseCodes),
#[error("Ledger returned an unknown response status code {0:x}. This is a bug. Please file an issue at https://github.com/summa-tx/bitcoins-rs/issues")]
UnknownAPDUCode(u16),
#[error("JsValue Error: {0}")]
#[cfg(target_arch = "wasm32")]
JsError(String),
#[error(transparent)]
#[cfg(not(target_arch = "wasm32"))]
NativeTransportError(#[from] crate::transports::hid::NativeTransportError),
}
#[cfg(target_arch = "wasm32")]
impl From<wasm_bindgen::prelude::JsValue> for LedgerError {
fn from(r: wasm_bindgen::prelude::JsValue) -> Self {
LedgerError::JsError(format!("{:#?}", &r))
}
}
impl From<APDUResponseCodes> for LedgerError {
fn from(r: APDUResponseCodes) -> Self {
LedgerError::BadRetcode(r)
}
}