9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-28 11:39:07 +00:00

Blank packs

This commit is contained in:
cyberpwn
2021-08-27 01:11:13 -04:00
parent 3f50767e48
commit 08865dc218
2 changed files with 102 additions and 10 deletions

View File

@@ -26,4 +26,12 @@ public class IrisException extends Exception {
public IrisException(String message) {
super(message);
}
public IrisException(Throwable message) {
super(message);
}
public IrisException(String message, Throwable e) {
super(message, e);
}
}