Files
Backend/src/main/java/cc/fascinated/model/response/impl/PlayerNotFoundResponse.java

12 lines
295 B
Java
Raw Normal View History

2024-04-08 06:48:21 +01:00
package cc.fascinated.model.response.impl;
import cc.fascinated.model.response.Response;
import org.springframework.http.HttpStatus;
public class PlayerNotFoundResponse extends Response {
public PlayerNotFoundResponse() {
super(HttpStatus.NOT_FOUND, "Player not found.");
}
}