summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/InvalidWorldException.java
blob: 03fe986d4c2d757b11d031061ac37bd69009a705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.earth2me.essentials.api;

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


public class InvalidWorldException extends Exception
{
	private final String world;

	public InvalidWorldException(final String world)
	{
		super(_("invalidWorld"));
		this.world = world;
	}

	public String getWorld()
	{
		return this.world;
	}
}