summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/NotEnoughArgumentsException.java
blob: 0c47b98932c2074f6b8279dd96d71300b736a192 (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.commands;


public class NotEnoughArgumentsException extends Exception
{
	public NotEnoughArgumentsException()
	{
		super("");
	}

	public NotEnoughArgumentsException(final String string)
	{
		super(string);
	}

	public NotEnoughArgumentsException(final Throwable ex)
	{
		super("", ex);
	}
}