We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e54bee6 commit ac2c1c0Copy full SHA for ac2c1c0
src/main/java/de/thetaphi/forbiddenapis/WrapperRuntimeException.java
@@ -17,7 +17,7 @@
17
*/
18
19
@SuppressWarnings("serial")
20
-public final class WrapperRuntimeException extends RuntimeException {
+final class WrapperRuntimeException extends RuntimeException {
21
22
public WrapperRuntimeException(Exception e) {
23
super(e);
src/main/java/de/thetaphi/forbiddenapis/cli/ExitException.java
@@ -4,7 +4,7 @@
4
* Used by the CLI to signal process exit with a specific exit code
5
6
7
-public final class ExitException extends Exception {
+final class ExitException extends Exception {
8
public final int exitCode;
9
10
public ExitException(int exitCode) {
0 commit comments