McMMOPlayerNotFoundException.java 441 B

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