Skip to content

Commit

Permalink
feat(api): HException
Browse files Browse the repository at this point in the history
  • Loading branch information
WakelessSloth56 committed Jun 27, 2022
1 parent 0b345c2 commit 1dcbb60
Showing 1 changed file with 17 additions and 0 deletions.
@@ -0,0 +1,17 @@
package org.auioc.mcmod.arnicalib.api.java.exception;

public class HException extends Exception {

public HException() {
super();
}

public HException(String message) {
super(message);
}

public HException(String message, Throwable cause) {
super(message, cause);
}

}

0 comments on commit 1dcbb60

Please sign in to comment.