1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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; } }