mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-11-01 15:29:19 +00:00
14 lines
263 B
Java
14 lines
263 B
Java
|
package me.StevenLawson.TotalFreedomMod.Commands;
|
||
|
|
||
|
public class CantFindPlayerException extends Exception
|
||
|
{
|
||
|
public CantFindPlayerException()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public CantFindPlayerException(String msg)
|
||
|
{
|
||
|
super("Can't find player: " + msg);
|
||
|
}
|
||
|
}
|