12 lines
295 B
Java
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.");
|
|
}
|
|
}
|