Skip to content

Commit

Permalink
fix: Include serde error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsvante committed Nov 3, 2021
1 parent 51d3445 commit 0941a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ pub enum Error {
HttpTransportError(String),
#[error("IO error: {0}")]
IOError(#[from] std::io::Error),
#[error("Serde error")]
#[error("Serde error: {0}")]
SerializationError(#[from] serde_json::Error),
}

0 comments on commit 0941a78

Please sign in to comment.