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


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

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