- package com.gmail.nossr50.api.exceptions;
- import org.bukkit.entity.Player;
- public class McMMOPlayerNotFoundException extends RuntimeException {
- private static final long serialVersionUID = 761917904993202836L;
- public McMMOPlayerNotFoundException(Player player) {
- super("McMMOPlayer object was not found for [NOTE: This can mean the profile is not loaded yet!] : " + player.getName() + " " + player.getUniqueId());
- }
- }
|