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

import static com.earth2me.essentials.I18n.tl;

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