aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de/cowtipper/cowlection/event
diff options
context:
space:
mode:
authorCow <cow@volloeko.de>2021-08-13 10:48:19 +0200
committerCow <cow@volloeko.de>2021-08-13 10:48:19 +0200
commit141a45a8d23237bf23b3b7a14d447440a40e71ea (patch)
tree2d5e5881b304e76881e1eddd0b467c79be60e7b9 /src/main/java/de/cowtipper/cowlection/event
parent589b94d1c7a1a648402d62c6c097b2394bff3d1d (diff)
downloadCowlection-141a45a8d23237bf23b3b7a14d447440a40e71ea.tar.gz
Cowlection-141a45a8d23237bf23b3b7a14d447440a40e71ea.tar.bz2
Cowlection-141a45a8d23237bf23b3b7a14d447440a40e71ea.zip
Improved error messages for API errors
Diffstat (limited to 'src/main/java/de/cowtipper/cowlection/event')
-rw-r--r--src/main/java/de/cowtipper/cowlection/event/ApiErrorEvent.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/java/de/cowtipper/cowlection/event/ApiErrorEvent.java b/src/main/java/de/cowtipper/cowlection/event/ApiErrorEvent.java
deleted file mode 100644
index ccfc4d3..0000000
--- a/src/main/java/de/cowtipper/cowlection/event/ApiErrorEvent.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package de.cowtipper.cowlection.event;
-
-import net.minecraftforge.fml.common.eventhandler.Event;
-
-public class ApiErrorEvent extends Event {
- private final String playerName;
-
- public ApiErrorEvent(String playerName) {
- this.playerName = playerName;
- }
-
- public String getPlayerName() {
- return playerName;
- }
-}