summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/user/PlayerNotFoundException.java
blob: a61757d95d38e9449c3e1942dca041f60e36c45e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package net.ess3.user;

import static net.ess3.I18n._;


public class PlayerNotFoundException extends Exception
{

	private static final long serialVersionUID = -510752839980332640L;

	public PlayerNotFoundException()
	{
		super(_("§4Player not found."));
	}
}