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


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