Files
Backend/src/main/java/cc/fascinated/model/response/impl/PlayerNotFoundResponse.java
Liam 4b4cc8ae54
All checks were successful
deploy / deploy (push) Successful in 41s
use better responses
2024-04-08 06:48:21 +01:00

12 lines
295 B
Java

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.");
}
}