summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/UserDoesNotExistException.java
blob: 4423301b6167099aacc06deef85c7e7d06b3cdc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package net.ess3.api;

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


public class UserDoesNotExistException extends Exception
{
	public UserDoesNotExistException(String name)
	{
		super(_("userDoesNotExist", name));
	}
}