We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8a338f commit 6621095Copy full SHA for 6621095
powertools-serialization/src/main/java/software/amazon/lambda/powertools/utilities/PrimingException.java
@@ -3,13 +3,8 @@
3
/**
4
* Exception thrown when priming operations fail during CRaC checkpoint preparation.
5
*/
6
-public class PrimingException extends Exception {
7
-
8
- public PrimingException(String message, Throwable cause) {
9
- super(message, cause);
10
- }
11
12
- public PrimingException(String message) {
13
- super(message);
+public class PrimingException extends RuntimeException {
+ public PrimingException(String message, Exception e) {
+ super(message,e);
14
}
15
0 commit comments