package kz.ilotterytea.frogartha.exceptions; public class PlayerKickException extends RuntimeException { private PlayerKickException(String message) { super(message); } public static PlayerKickException loggedIn() { return new PlayerKickException("You logged in from another location"); } public static PlayerKickException internalServerError() { return new PlayerKickException("Internal Server Error"); } }