Skip to content

Commit 7d40aa8

Browse files
committed
moved SharkException from Android to this base java project
1 parent cc42774 commit 7d40aa8

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)