summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java
blob: 531d9ead63c21f07f61307c4c5a30701b950faa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.earth2me.essentials.api;

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


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