summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
blob: c33e87522752ef09ad8c7e3f8a4b06b224f40e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.earth2me.essentials.commands;

import static com.earth2me.essentials.I18n._;

public class PlayerNotFoundException extends NoSuchFieldException
{
	public PlayerNotFoundException()
	{
		super(_("playerNotFound"));
	}
}