Skip to content

Commit 1b0dc0e

Browse files
committed
Merge remote-tracking branch 'origin/move-traffic-to-debug' into move-traffic-to-debug
2 parents 0ef0101 + 5ca9c02 commit 1b0dc0e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/java/com/sap/ai/sdk/core/common/ClientResponseHandler.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ public void buildExceptionAndThrow(@Nonnull final ClassicHttpResponse response)
106106
val errorCode = response.getCode();
107107
val exception =
108108
exceptionConstructor.apply(
109-
"Request failed with status %s %s"
110-
.formatted(errorCode, response.getReasonPhrase()),
109+
"Request failed with status %s %s".formatted(errorCode, response.getReasonPhrase()),
111110
null);
112111
val entity = response.getEntity();
113112
if (entity == null) {

0 commit comments

Comments
 (0)