2025-03-12 15:10:57 +01:00
|
|
|
package de.towerdefence.server.game.exeptions;
|
2025-03-10 13:39:14 +01:00
|
|
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
import lombok.Getter;
|
|
|
|
|
|
|
|
@Getter
|
|
|
|
@AllArgsConstructor
|
|
|
|
public enum InvalidPlacementReason {
|
2025-03-12 14:34:55 +01:00
|
|
|
MATCH_NOT_STARTED("match-not-started"),
|
2025-03-10 13:39:14 +01:00
|
|
|
OUT_OF_BOUNDS("out-of-bounds"),
|
2025-03-12 13:03:33 +01:00
|
|
|
LOCATION_USED("location-used"),
|
|
|
|
NOT_ENOUGH_MONEY("not-enough-money");
|
2025-03-10 13:39:14 +01:00
|
|
|
|
|
|
|
private final String jsonName;
|
|
|
|
}
|