summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/WarpNotFoundException.java
blob: eef5db9144b2e170483ed3e2cabf387ea16741b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package net.ess3.commands;
import static net.ess3.I18n._;


public class WarpNotFoundException extends Exception
{
	public WarpNotFoundException()
	{
		super(_("warpNotExist"));
	}
	
	public WarpNotFoundException(String message)
	{
		super(message);
	}
}