Skip to content

Commit f367752

Browse files
committed
add proper serialVersionUID
1 parent e9e2555 commit f367752

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* and validation failures.
66
*/
77
public class AuthenticationException extends RuntimeException {
8-
private static final long serialVersionUID = 1L;
8+
private static final long serialVersionUID = -7728708330906023941L;
99

1010
/**
1111
* Constructs a new AuthenticationException with the specified detail message.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SDK-related failures.
66
*/
77
public class SdkException extends RuntimeException {
8-
private static final long serialVersionUID = 1L;
8+
private static final long serialVersionUID = 4349442434992445252L;
99

1010
/**
1111
* Constructs a new SdkException with the specified detail message.

0 commit comments

Comments
 (0)