15 lines
366 B
Java
15 lines
366 B
Java
package de.towerdefence.server.game.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;
|
|
}
|