blob: 3c0c06ef9d53da3f450258d289815dfbf1825360 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package eu.olli.cowlection.command.exception;
import net.minecraft.command.SyntaxErrorException;
import net.minecraft.util.EnumChatFormatting;
public class InvalidPlayerNameException extends SyntaxErrorException {
public InvalidPlayerNameException(String playerName) {
super(EnumChatFormatting.DARK_RED + playerName + EnumChatFormatting.RED + "? This... doesn't look like a valid username.");
}
}
|