package de.towerdefence.server.match.exeptions; import lombok.AllArgsConstructor; import lombok.Getter; @Getter @AllArgsConstructor public enum InvalidPlacementReason { MATCH_NOT_STARTED("match-not-started"), OUT_OF_BOUNDS("out-of-bounds"), LOCATION_USED("location-used"), NOT_ENOUGH_MONEY("not-enough-money"); private final String jsonName; }