Server/src/main/java/de/towerdefence/server/match/exeptions/InvalidPlacementReason.java

16 lines
367 B
Java
Raw Normal View History

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"),
2025-03-12 13:03:33 +01:00
LOCATION_USED("location-used"),
NOT_ENOUGH_MONEY("not-enough-money");
private final String jsonName;
}