summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/UserDoesNotExistException.java
blob: 75871aa847654051b84f83599069b81d7bdcb8cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;

	/**
	 *
	 * @param name
	 */
	public UserDoesNotExistException(String name)
	{
		super(_("§4The user§c {0} §4does not exist.", name));
	}
}