We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf5c55 commit bd849efCopy full SHA for bd849ef
rust-runtime/aws-smithy-legacy-http-server/Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "aws-smithy-legacy-http-server"
3
-version = "0.65.8"
+version = "0.65.9"
4
authors = ["Smithy Rust Server <[email protected]>"]
5
edition = "2021"
6
license = "Apache-2.0"
rust-runtime/aws-smithy-legacy-http-server/src/protocol/aws_json/rejection.rs
@@ -9,6 +9,8 @@ use thiserror::Error;
9
10
#[derive(Debug, Error)]
11
pub enum ResponseRejection {
12
+ #[error("error building HTTP response: {0}")]
13
+ Build(#[from] aws_smithy_types::error::operation::BuildError),
14
#[error("error serializing JSON-encoded body: {0}")]
15
Serialization(#[from] aws_smithy_types::error::operation::SerializationError),
16
#[error("error building HTTP response: {0}")]
0 commit comments