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