mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 20:52:37 +00:00
20 lines
325 B
Java
20 lines
325 B
Java
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);
|
|
}
|
|
}
|