summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/WarpNotFoundException.java
blob: 21971542e8c9501d1ba9334f0f3b47cb7a877e8f (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.commands;

import static net.ess3.I18n._;


public class WarpNotFoundException extends Exception
{
	private static final long serialVersionUID = 6585692783437952812L;

	public WarpNotFoundException()
	{
		super(_("That warp does not exist."));
	}

	public WarpNotFoundException(String message)
	{
		super(message);
	}
}