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

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

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