TF-EssentialsX/Essentials/src/main/java/com/earth2me/essentials/commands/PlayerNotFoundException.java

10 lines
243 B
Java
Raw Normal View History

2012-10-14 12:04:00 +00:00
package com.earth2me.essentials.commands;
import static com.earth2me.essentials.I18n.tl;
2012-10-14 12:04:00 +00:00
2015-04-15 04:06:16 +00:00
public class PlayerNotFoundException extends NoSuchFieldException {
public PlayerNotFoundException() {
super(tl("playerNotFound"));
}
2012-10-14 12:04:00 +00:00
}