Skip to content

Commit 64b1319

Browse files
committed
Add wrapped error strings to error display text
1 parent 8ce19a8 commit 64b1319

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/test-rpc/src/lib.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub enum Error {
2323
Io(String),
2424
#[error("Interface not found")]
2525
InterfaceNotFound,
26-
#[error("HTTP request failed: {0}")]
26+
#[error("HTTP request failed")]
2727
HttpRequest(String),
2828
#[error("Failed to deserialize HTTP body")]
2929
DeserializeBody,
@@ -39,17 +39,17 @@ pub enum Error {
3939
SendUdp,
4040
#[error("Failed to send TCP segment")]
4141
SendTcp,
42-
#[error("Failed to send ping: {0}")]
42+
#[error("Failed to send ping")]
4343
Ping(String),
44-
#[error("Failed to get or set registry value: {0}")]
44+
#[error("Failed to get or set registry value")]
4545
Registry(String),
46-
#[error("Failed to change the service: {0}")]
46+
#[error("Failed to change the service")]
4747
Service(String),
48-
#[error("Could not read from or write to the file system: {0}")]
48+
#[error("Could not read from or write to the file system")]
4949
FileSystem(String),
50-
#[error("Could not serialize or deserialize file: {0}")]
50+
#[error("Could not serialize or deserialize file")]
5151
FileSerialization(String),
52-
#[error("User must be logged in but is not: {0}")]
52+
#[error("User must be logged in but is not")]
5353
UserNotLoggedIn(String),
5454
#[error("Invalid URL")]
5555
InvalidUrl,

0 commit comments

Comments
 (0)