We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc42774 commit 7d40aa8Copy full SHA for 7d40aa8
1 file changed
src/net/sharksystem/SharkException.java
@@ -0,0 +1,11 @@
1
+package net.sharksystem;
2
+
3
+public class SharkException extends Exception {
4
+ public SharkException() { super(); }
5
6
+ public SharkException(String message) { super(message); }
7
8
+ public SharkException(String message, Throwable cause) { super(message, cause); }
9
10
+ public SharkException(Throwable cause) { super(cause); }
11
+}
0 commit comments