summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/UserDoesNotExistException.java
blob: b2df53ae154f93bc2c29fd6e8e5dc472250a06ad (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(_("The user {0} does not exist.", name));
	}
}