Skip to content

Commit 28ebc6b

Browse files
committed
beautify
1 parent 245753f commit 28ebc6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationError.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public interface OrchestrationError extends ClientError {
3131
@Value
3232
class Synchronous implements OrchestrationError {
3333
private static Error NOT_FOUND =
34-
Error.create().requestId("").code(-1).message("error not found").location("");
34+
Error.create().requestId("").code(-1).message("Error not found.").location("");
3535
ErrorResponse errorResponse;
3636

3737
@Override
@@ -52,7 +52,7 @@ public String getMessage() {
5252
@Value
5353
class Streaming implements OrchestrationError {
5454
private static ErrorStreaming NOT_FOUND =
55-
ErrorStreaming.create().requestId("").code(-1).message("error not found").location("");
55+
ErrorStreaming.create().requestId("").code(-1).message("Error not found.").location("");
5656
ErrorResponseStreaming errorResponse;
5757

5858
@Override

0 commit comments

Comments
 (0)