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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
use crate::rpc_request; use solana_sdk::{ signature::SignerError, transaction::TransactionError, transport::TransportError, }; use std::io; use thiserror::Error; #[derive(Error, Debug)] pub enum ClientErrorKind { #[error(transparent)] Io(#[from] io::Error), #[error(transparent)] Reqwest(#[from] reqwest::Error), #[error(transparent)] RpcError(#[from] rpc_request::RpcError), #[error(transparent)] SerdeJson(#[from] serde_json::error::Error), #[error(transparent)] SigningError(#[from] SignerError), #[error(transparent)] TransactionError(#[from] TransactionError), #[error("Custom: {0}")] Custom(String), } impl From<TransportError> for ClientErrorKind { fn from(err: TransportError) -> Self { match err { TransportError::IoError(err) => Self::Io(err), TransportError::TransactionError(err) => Self::TransactionError(err), TransportError::Custom(err) => Self::Custom(err), } } } impl Into<TransportError> for ClientErrorKind { fn into(self) -> TransportError { match self { Self::Io(err) => TransportError::IoError(err), Self::TransactionError(err) => TransportError::TransactionError(err), Self::Reqwest(err) => TransportError::Custom(format!("{:?}", err)), Self::RpcError(err) => TransportError::Custom(format!("{:?}", err)), Self::SerdeJson(err) => TransportError::Custom(format!("{:?}", err)), Self::SigningError(err) => TransportError::Custom(format!("{:?}", err)), Self::Custom(err) => TransportError::Custom(format!("{:?}", err)), } } } #[derive(Error, Debug)] #[error("{kind}")] pub struct ClientError { command: Option<&'static str>, #[source] kind: ClientErrorKind, } impl ClientError { pub fn new_with_command(kind: ClientErrorKind, command: &'static str) -> Self { Self { command: Some(command), kind, } } pub fn into_with_command(self, command: &'static str) -> Self { Self { command: Some(command), ..self } } pub fn command(&self) -> Option<&'static str> { self.command } pub fn kind(&self) -> &ClientErrorKind { &self.kind } } impl From<ClientErrorKind> for ClientError { fn from(kind: ClientErrorKind) -> Self { Self { command: None, kind, } } } impl From<TransportError> for ClientError { fn from(err: TransportError) -> Self { Self { command: None, kind: err.into(), } } } impl Into<TransportError> for ClientError { fn into(self) -> TransportError { self.kind.into() } } impl From<std::io::Error> for ClientError { fn from(err: std::io::Error) -> Self { Self { command: None, kind: err.into(), } } } impl From<reqwest::Error> for ClientError { fn from(err: reqwest::Error) -> Self { Self { command: None, kind: err.into(), } } } impl From<rpc_request::RpcError> for ClientError { fn from(err: rpc_request::RpcError) -> Self { Self { command: None, kind: err.into(), } } } impl From<serde_json::error::Error> for ClientError { fn from(err: serde_json::error::Error) -> Self { Self { command: None, kind: err.into(), } } } impl From<SignerError> for ClientError { fn from(err: SignerError) -> Self { Self { command: None, kind: err.into(), } } } impl From<TransactionError> for ClientError { fn from(err: TransactionError) -> Self { Self { command: None, kind: err.into(), } } } pub type Result<T> = std::result::Result<T, ClientError>;