1
+ //! Errors that can occur when using the replica agent.
2
+
1
3
use crate :: { agent:: status:: Status , hash_tree:: Label , RequestIdError } ;
2
4
use leb128:: read;
3
5
use std:: {
@@ -6,122 +8,174 @@ use std::{
6
8
} ;
7
9
use thiserror:: Error ;
8
10
11
+ /// An error that occurred when using the agent.
9
12
#[ derive( Error , Debug ) ]
10
13
pub enum AgentError {
14
+ /// The replica URL was invalid.
11
15
#[ error( r#"Invalid Replica URL: "{0}""# ) ]
12
16
InvalidReplicaUrl ( String ) ,
13
17
18
+ /// The request timed out.
14
19
#[ error( "The request timed out." ) ]
15
20
TimeoutWaitingForResponse ( ) ,
16
21
22
+ /// The waiter was restarted without being started first.
17
23
#[ error( "The waiter was restarted without being started first." ) ]
18
24
WaiterRestartError ( ) ,
19
25
26
+ /// An error occurred when signing with the identity.
20
27
#[ error( "Identity had a signing error: {0}" ) ]
21
28
SigningError ( String ) ,
22
29
30
+ /// The data fetched was invalid CBOR.
23
31
#[ error( "Invalid CBOR data, could not deserialize: {0}" ) ]
24
32
InvalidCborData ( #[ from] serde_cbor:: Error ) ,
25
33
34
+ /// There was an error calculating a request ID.
26
35
#[ error( "Cannot calculate a RequestID: {0}" ) ]
27
36
CannotCalculateRequestId ( #[ from] RequestIdError ) ,
28
37
38
+ /// There was an error when de/serializing with Candid.
29
39
#[ error( "Candid returned an error: {0}" ) ]
30
40
CandidError ( Box < dyn Send + Sync + std:: error:: Error > ) ,
31
41
42
+ /// There was an error parsing a URL.
32
43
#[ error( r#"Cannot parse url: "{0}""# ) ]
33
44
UrlParseError ( #[ from] url:: ParseError ) ,
34
45
46
+ /// The HTTP method was invalid.
35
47
#[ error( r#"Invalid method: "{0}""# ) ]
36
48
InvalidMethodError ( #[ from] http:: method:: InvalidMethod ) ,
37
49
50
+ /// The principal string was not a valid principal.
38
51
#[ error( "Cannot parse Principal: {0}" ) ]
39
52
PrincipalError ( #[ from] crate :: export:: PrincipalError ) ,
40
53
54
+ /// The replica rejected the message.
41
55
#[ error( r#"The Replica returned an error: code {reject_code}, message: "{reject_message}""# ) ]
42
56
ReplicaError {
57
+ /// The [reject code](https://smartcontracts.org/docs/interface-spec/index.html#reject-codes) returned by the replica.
43
58
reject_code : u64 ,
59
+ /// The rejection message.
44
60
reject_message : String ,
45
61
} ,
46
62
63
+ /// The replica returned an HTTP error.
47
64
#[ error( "The replica returned an HTTP Error: {0}" ) ]
48
65
HttpError ( HttpErrorPayload ) ,
49
66
67
+ /// Attempted to use HTTP authentication in a non-secure URL (either HTTPS or localhost).
50
68
#[ error( "HTTP Authentication cannot be used in a non-secure URL (either HTTPS or localhost)" ) ]
51
69
CannotUseAuthenticationOnNonSecureUrl ( ) ,
52
70
71
+ /// The password manager returned an error.
53
72
#[ error( "Password Manager returned an error: {0}" ) ]
54
73
AuthenticationError ( String ) ,
55
74
75
+ /// The status endpoint returned an invalid status.
56
76
#[ error( "Status endpoint returned an invalid status." ) ]
57
77
InvalidReplicaStatus ,
58
78
79
+ /// The call was marked done, but no reply was provided.
59
80
#[ error( "Call was marked as done but we never saw the reply. Request ID: {0}" ) ]
60
81
RequestStatusDoneNoReply ( String ) ,
61
82
83
+ /// A string error occurred in an external tool.
62
84
#[ error( "A tool returned a string message error: {0}" ) ]
63
85
MessageError ( String ) ,
64
86
87
+ /// An error occurred in an external tool.
65
88
#[ error( "A tool returned a custom error: {0}" ) ]
66
89
CustomError ( #[ from] Box < dyn Send + Sync + std:: error:: Error > ) ,
67
90
91
+ /// There was an error reading a LEB128 value.
68
92
#[ error( "Error reading LEB128 value: {0}" ) ]
69
93
Leb128ReadError ( #[ from] read:: Error ) ,
70
94
95
+ /// A string was invalid UTF-8.
71
96
#[ error( "Error in UTF-8 string: {0}" ) ]
72
97
Utf8ReadError ( #[ from] Utf8Error ) ,
73
98
99
+ /// The lookup path was absent in the certificate.
74
100
#[ error( "The lookup path ({0:?}) is absent in the certificate." ) ]
75
101
LookupPathAbsent ( Vec < Label > ) ,
76
102
103
+ /// The lookup path was unknown in the certificate.
77
104
#[ error( "The lookup path ({0:?}) is unknown in the certificate." ) ]
78
105
LookupPathUnknown ( Vec < Label > ) ,
79
106
107
+ /// The lookup path did not make sense for the certificate.
80
108
#[ error( "The lookup path ({0:?}) does not make sense for the certificate." ) ]
81
109
LookupPathError ( Vec < Label > ) ,
82
110
111
+ /// The request status at the requested path was invalid.
83
112
#[ error( "The request status ({1}) at path {0:?} is invalid." ) ]
84
113
InvalidRequestStatus ( Vec < Label > , String ) ,
85
114
115
+ /// The certificate verification failed.
86
116
#[ error( "Certificate verification failed." ) ]
87
117
CertificateVerificationFailed ( ) ,
88
118
119
+ /// There was a length mismatch between the expected and actual length of the BLS DER-encoded public key.
89
120
#[ error(
90
121
r#"BLS DER-encoded public key must be ${expected} bytes long, but is {actual} bytes long."#
91
122
) ]
92
- DerKeyLengthMismatch { expected : usize , actual : usize } ,
123
+ DerKeyLengthMismatch {
124
+ /// The expected length of the key.
125
+ expected : usize ,
126
+ /// The actual length of the key.
127
+ actual : usize ,
128
+ } ,
93
129
130
+ /// There was a mismatch between the expected and actual prefix of the BLS DER-encoded public key.
94
131
#[ error( "BLS DER-encoded public key is invalid. Expected the following prefix: ${expected:?}, but got ${actual:?}" ) ]
95
- DerPrefixMismatch { expected : Vec < u8 > , actual : Vec < u8 > } ,
132
+ DerPrefixMismatch {
133
+ /// The expected key prefix.
134
+ expected : Vec < u8 > ,
135
+ /// The actual key prefix.
136
+ actual : Vec < u8 > ,
137
+ } ,
96
138
139
+ /// The status response did not contain a root key.
97
140
#[ error( "The status response did not contain a root key. Status: {0}" ) ]
98
141
NoRootKeyInStatus ( Status ) ,
99
142
143
+ /// Could not read the replica root key.
100
144
#[ error( "Could not read the root key" ) ]
101
145
CouldNotReadRootKey ( ) ,
102
146
147
+ /// Failed to initialize the BLS library.
103
148
#[ error( "Failed to initialize the BLS library" ) ]
104
149
BlsInitializationFailure ( ) ,
105
150
151
+ /// The invocation to the wallet call forward method failed with an error.
106
152
#[ error( "The invocation to the wallet call forward method failed with the error: {0}" ) ]
107
153
WalletCallFailed ( String ) ,
108
154
155
+ /// The wallet operation failed.
109
156
#[ error( "The wallet operation failed: {0}" ) ]
110
157
WalletError ( String ) ,
111
158
159
+ /// The wallet canister must be upgraded. See [`dfx wallet upgrade`](https://smartcontracts.org/docs/developers-guide/cli-reference/dfx-wallet.html)
112
160
#[ error( "The wallet canister must be upgraded: {0}" ) ]
113
161
WalletUpgradeRequired ( String ) ,
114
162
163
+ /// The transport was not specified in the [`AgentBuilder`](super::AgentBuilder).
115
164
#[ error( "Missing replica transport in the Agent Builder." ) ]
116
165
MissingReplicaTransport ( ) ,
117
166
167
+ /// An unknown error occurred during communication with the replica.
118
168
#[ error( "An error happened during communication with the replica: {0}" ) ]
119
169
TransportError ( Box < dyn std:: error:: Error + Send + Sync > ) ,
120
170
171
+ /// There was a mismatch between the expected and actual CBOR data during inspection.
121
172
#[ error( "There is a mismatch between the CBOR encoded call and the arguments: field {field}, value in argument is {value_arg}, value in CBOR is {value_cbor}" ) ]
122
173
CallDataMismatch {
174
+ /// The field that was mismatched.
123
175
field : String ,
176
+ /// The value that was expected to be in the CBOR.
124
177
value_arg : String ,
178
+ /// The value that was actually in the CBOR.
125
179
value_cbor : String ,
126
180
} ,
127
181
}
@@ -134,9 +188,13 @@ impl PartialEq for AgentError {
134
188
}
135
189
}
136
190
191
+ /// A HTTP error from the replica.
137
192
pub struct HttpErrorPayload {
193
+ /// The HTTP status code.
138
194
pub status : u16 ,
195
+ /// The MIME type of `content`.
139
196
pub content_type : Option < String > ,
197
+ /// The body of the error.
140
198
pub content : Vec < u8 > ,
141
199
}
142
200
0 commit comments