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

import static net.ess3.I18n._;


public class UserDoesNotExistException extends Exception
{
	/**
	 * Allow serialization of the UserDefinedFileAttributeView exception
	 */
	private static final long serialVersionUID = -6540804196206916310L;

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