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 983d055 commit 20901adCopy full SHA for 20901ad
java-compiler-testing/src/main/java/io/github/ascopes/jct/ex/JctException.java
@@ -27,10 +27,21 @@
27
@API(since = "0.0.1", status = Status.STABLE)
28
public abstract class JctException extends RuntimeException {
29
30
+ /**
31
+ * Initialise the exception with a message.
32
+ *
33
+ * @param message the message to initialise the exception with.
34
+ */
35
JctException(String message) {
36
super(message);
37
}
38
39
40
+ * Initialise the exception with a message and a cause.
41
42
43
+ * @param cause the cause of the exception.
44
45
JctException(String message, Throwable cause) {
46
super(message, cause);
47
0 commit comments