-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements support for handling errors as well as debug functionality (…
…#6) See HypixelDev/ModAPI#39
- Loading branch information
1 parent
6da96a1
commit 2960491
Showing
3 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/net/hypixel/modapi/fabric/event/HypixelModAPIErrorCallback.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package net.hypixel.modapi.fabric.event; | ||
|
||
import net.fabricmc.fabric.api.event.Event; | ||
import net.fabricmc.fabric.api.event.EventFactory; | ||
import net.hypixel.modapi.error.ErrorReason; | ||
|
||
/** | ||
* Callback for when a Hypixel Mod API error reason is received. | ||
*/ | ||
public interface HypixelModAPIErrorCallback { | ||
|
||
Event<HypixelModAPIErrorCallback> EVENT = EventFactory.createArrayBacked(HypixelModAPIErrorCallback.class, callbacks -> (identifier, reason) -> { | ||
for (HypixelModAPIErrorCallback callback : callbacks) { | ||
callback.onError(identifier, reason); | ||
} | ||
}); | ||
|
||
void onError(String identifier, ErrorReason reason); | ||
|
||
} |