@@ -63,7 +63,7 @@ public interface HttpClientResponse {
63
63
/**
64
64
* Return the response with the body containing a single instance of the given type.
65
65
* <p>
66
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
66
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
67
67
* the HttpResponse. This is the cause in the CompletionException when using an async request.
68
68
*
69
69
* @param type The type of the bean to convert the response content into.
@@ -76,7 +76,7 @@ public interface HttpClientResponse {
76
76
/**
77
77
* Return the response with the body containing a single instance of the given type.
78
78
* <p>
79
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
79
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
80
80
* the HttpResponse. This is the cause in the CompletionException when using an async request.
81
81
*
82
82
* @param type The type of the bean to convert the response content into.
@@ -88,7 +88,7 @@ public interface HttpClientResponse {
88
88
/**
89
89
* Return the response with the body containing a list of the given type.
90
90
* <p>
91
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
91
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
92
92
* the HttpResponse. This is the cause in the CompletionException when using an async request.
93
93
*
94
94
* @param type The type of the bean to convert the response content into.
@@ -101,7 +101,7 @@ public interface HttpClientResponse {
101
101
/**
102
102
* Return the response with the body containing a list of the given type.
103
103
* <p>
104
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
104
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
105
105
* the HttpResponse. This is the cause in the CompletionException when using an async request.
106
106
*
107
107
* @param type The type of the bean to convert the response content into.
@@ -122,7 +122,7 @@ public interface HttpClientResponse {
122
122
* may not be available at the time of the callback. As such {@link RequestLogger}
123
123
* will not include response content when logging stream request/response
124
124
* <p>
125
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
125
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
126
126
* the HttpResponse. This is the cause in the CompletionException when using an async request.
127
127
*
128
128
* @param type The type of the bean to convert the response content into.
@@ -143,7 +143,7 @@ public interface HttpClientResponse {
143
143
* may not be available at the time of the callback. As such {@link RequestLogger}
144
144
* will not include response content when logging stream request/response
145
145
* <p>
146
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
146
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
147
147
* the HttpResponse. This is the cause in the CompletionException when using an async request.
148
148
*
149
149
* @param type The type of the bean to convert the response content into.
@@ -156,7 +156,7 @@ public interface HttpClientResponse {
156
156
/**
157
157
* Return the response as a single bean.
158
158
* <p>
159
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
159
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
160
160
* the HttpResponse. This is the cause in the CompletionException when using an async request.
161
161
*
162
162
* @param type The type of the bean to convert the response content into.
@@ -169,7 +169,7 @@ public interface HttpClientResponse {
169
169
/**
170
170
* Return the response as a list of beans.
171
171
* <p>
172
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
172
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
173
173
* the HttpResponse. This is the cause in the CompletionException when using an async request.
174
174
*
175
175
* @param type The type of the bean to convert the response content into.
@@ -190,7 +190,7 @@ public interface HttpClientResponse {
190
190
* may not be available at the time of the callback. As such {@link RequestLogger}
191
191
* will not include response content when logging stream request/response
192
192
* <p>
193
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
193
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
194
194
* the HttpResponse. This is the cause in the CompletionException when using an async request.
195
195
*
196
196
* @param type The type of the bean to convert the response content into.
@@ -203,7 +203,7 @@ public interface HttpClientResponse {
203
203
/**
204
204
* Return the response as a single bean.
205
205
* <p>
206
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
206
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
207
207
* the HttpResponse. This is the cause in the CompletionException when using an async request.
208
208
*
209
209
* @param type The type of the bean to convert the response content into.
@@ -215,7 +215,7 @@ public interface HttpClientResponse {
215
215
/**
216
216
* Return the response as a list of beans.
217
217
* <p>
218
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
218
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
219
219
* the HttpResponse. This is the cause in the CompletionException when using an async request.
220
220
*
221
221
* @param type The type of the bean to convert the response content into.
@@ -235,7 +235,7 @@ public interface HttpClientResponse {
235
235
* may not be available at the time of the callback. As such {@link RequestLogger}
236
236
* will not include response content when logging stream request/response
237
237
* <p>
238
- * If the HTTP statusCode is not in the 2XX range a HttpException is throw which contains
238
+ * If the HTTP statusCode is not in the 2XX range, an HttpException is thrown containing
239
239
* the HttpResponse. This is the cause in the CompletionException when using an async request.
240
240
*
241
241
* @param type The type of the bean to convert the response content into.
0 commit comments