Skip to content

Commit e9e2555

Browse files
committed
fix format
1 parent 66a8b67 commit e9e2555

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

core/src/main/java/cloud/stackit/sdk/core/KeyFlowInterceptor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ public Response intercept(Chain chain) throws IOException {
3838
} catch (InvalidKeySpecException | ApiException e) {
3939
// try-catch required, because ApiException can not be thrown in the implementation
4040
// of Interceptor.intercept(Chain chain)
41-
throw new AuthenticationException("Failed to obtain access token for request authentication", e);
41+
throw new AuthenticationException(
42+
"Failed to obtain access token for request authentication", e);
4243
}
4344

4445
Request authenticatedRequest =

core/src/main/java/cloud/stackit/sdk/core/exception/AuthenticationException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cloud.stackit.sdk.core.exception;
22

33
/**
4-
* Exception thrown when authentication operations fail.
5-
* This includes token generation, refresh, and validation failures.
4+
* Exception thrown when authentication operations fail. This includes token generation, refresh,
5+
* and validation failures.
66
*/
77
public class AuthenticationException extends RuntimeException {
88
private static final long serialVersionUID = 1L;

core/src/main/java/cloud/stackit/sdk/core/exception/SdkException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cloud.stackit.sdk.core.exception;
22

33
/**
4-
* Exception thrown when SDK operations fail.
5-
* This includes API calls, network issues, and other SDK-related failures.
4+
* Exception thrown when SDK operations fail. This includes API calls, network issues, and other
5+
* SDK-related failures.
66
*/
77
public class SdkException extends RuntimeException {
88
private static final long serialVersionUID = 1L;

0 commit comments

Comments
 (0)