@ -530,7 +530,7 @@ public interface WebClient {
* return response.bodyToMono(ErrorContainer.class);
* }
* else {
* return response.createException();
* return response.createError();
* });
* </pre>
@ -595,7 +595,7 @@ depending on the response status:
}
else {
// Turn to error
return response.createException();
return response.createError();
});
----