We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43e0f9e commit fd3bb3bCopy full SHA for fd3bb3b
src/main/java/com/github/stickerifier/stickerify/exception/BaseException.java
@@ -3,10 +3,18 @@
3
import org.slf4j.helpers.MessageFormatter;
4
5
public class BaseException extends Exception {
6
+ public BaseException(String message) {
7
+ super(message);
8
+ }
9
+
10
public BaseException(Throwable cause) {
11
super(cause);
12
}
13
14
+ public BaseException(String message, Throwable cause) {
15
+ super(message, cause);
16
17
18
/**
19
* Creates an exception with a parameterized message: each {@code {}}
20
* will be replaced with the corresponding element in {@code parameters}.
0 commit comments