mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-11-01 13:39:15 +00:00
85ae29ad43
Please code in the "Allman" style in regards to indenting and bracket placement, at least in this project :D
20 lines
453 B
Java
20 lines
453 B
Java
package me.StevenLawson.TotalFreedomMod.Commands;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
public class CantFindPlayerException extends Exception
|
|
{
|
|
// apparently, java needs this
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public CantFindPlayerException()
|
|
{
|
|
super(ChatColor.GRAY + "Can't find player.");
|
|
}
|
|
|
|
public CantFindPlayerException(String msg)
|
|
{
|
|
super(ChatColor.GRAY + "Can't find player: " + msg);
|
|
}
|
|
}
|