Skip to content

Commit 5ca9c02

Browse files
committed
Formatting
1 parent 73de723 commit 5ca9c02

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)